Forum: Java Aug 5th, 2009 |
| Replies: 3 Views: 424 Wow, I had to do this one in school too!
Get as much down on code as you can and we can help you step through were you're stuck |
Forum: Java Aug 5th, 2009 |
| Replies: 6 Views: 412 Oh, I had to do this one too!
I suggest you start by putting everything you can down in code and then when/if you get stuck the post what you have and we can help you through it. The toughest part... |
Forum: Java Apr 27th, 2009 |
| Replies: 11 Views: 4,843 1) You're posting to a thread that is two months old, start you own thread.
2) You have not explained your problem nor have you shown what you've done to reach the point where you got an error. (if... |
Forum: Java Feb 25th, 2009 |
| Replies: 6 Views: 352 Why don't you just use one of the programs that do this already like basckstreet browser?
If it's some sort of project for school, your workplace etc. then what you need to remember is we are not... |
Forum: Java Feb 20th, 2009 |
| Replies: 11 Views: 4,843 http://lmgtfy.com/?q=java+k+means+clustering |
Forum: Java Feb 20th, 2009 |
| Replies: 3 Views: 1,175 I'm not totally sure where you're stuck. Have you tried to google this? I did and the first result has an example of a static read . . .
are you unsure of the concepts? are you trying but getting... |
Forum: Java Feb 15th, 2009 |
| Replies: 2 Views: 672 Nevermind I got it - I must have made a typo or something before because it works now - just in case anyone looks here it is
public static void extend(ArrayList priceList, ArrayList quantityList,... |
Forum: Java Feb 15th, 2009 |
| Replies: 2 Views: 672 I have the following code which outputs incorrectly.
public static void extend(ArrayList priceList, ArrayList quantityList, ArrayList amountList){
for(int i = 0; i < priceList.size();... |
Forum: Java Feb 13th, 2009 |
| Replies: 3 Views: 320 Sure someone can help you finish your code. But we won't do it for you. Adding to Ezzaral's suggestion, start with a small piece and get that where you need it to be. Breaking it down to the smallest... |
Forum: Java Feb 13th, 2009 |
| Replies: 15 Views: 618 by the way - that comment about ddanbe was a joke, I don't know him but hope he has a good sense of humor. |
Forum: Java Feb 13th, 2009 |
| Replies: 6 Views: 2,003 I tried to help you once. Again I typed in "Java play audio file" and the first result from google was here
http://www.google.com/search?hl=en&q=java+play+audio+file
in google the description says... |
Forum: Java Feb 13th, 2009 |
| Replies: 15 Views: 618 don't be fooled by that picture - ddanbe is an 11 yr old child prodigy |
Forum: Java Feb 13th, 2009 |
| Replies: 15 Views: 618 please use code tags to make readibility easier |
Forum: Java Feb 13th, 2009 |
| Replies: 6 Views: 2,003 hmm wierd, what didn't you find? I typed in
java play audio file
and found a ton of stuff in google . . . |
Forum: Java Feb 13th, 2009 |
| Replies: 15 Views: 618 which number = 0 did you take out? you need to take out? You have two of them, and one of them doesn't even end the line with a semi-colon
ddanbe - who knows what IDE he is using if any - but... |
Forum: Java Feb 11th, 2009 |
| Replies: 14 Views: 2,224 I thought javaAddict posted what you needed to do above . .
you don't know how to display it in tabular format or what? |
Forum: Java Feb 11th, 2009 |
| Replies: 2 Views: 271 I was wondering about that this morning, I hit the button to call it but I thought I was going to have to put a listener or something back in the loop for the button, but you're right, I won't need... |
Forum: Java Feb 10th, 2009 |
| Replies: 2 Views: 271 I'm having trouble getting this while loop to stop and look for a new input. Obviously the while loop is infinite because I don't get new input. I know this is easy but I'm still stuck
here is my... |
Forum: Java Feb 10th, 2009 |
| Replies: 11 Views: 662 nandomendoza
start with writing pseudocode of what you want your program to do. It's just plain english
start program
--program does this
--if program input is this then do this
etc |
Forum: Java Feb 10th, 2009 |
| Replies: 7 Views: 414 lol - I guess I just couldn't believe that someone would ask us to do their work. My thought was more like "can you do something this way?" but not "you" just more like can "it" . . .
Well, I'm... |
Forum: Java Feb 9th, 2009 |
| Replies: 7 Views: 414 I didn't think he was asking to have us code the project, he was asking if it could be done. Maybe I read it incorrectly,
I think what you're looking for is here (funny, I'm doing a similar... |
Forum: Java Feb 6th, 2009 |
| Replies: 13 Views: 768 Do you have this solved and turned in yet. Are you still stuck? |
Forum: Java Feb 5th, 2009 |
| Replies: 3 Views: 685 I'm interested to see what goes on with this one, why wouldn't you need his line in bold to be this?
if(p.getCoinName(coinName).equalsIgnoreCase(coinName))
I'm very new to Java so please be... |
Forum: Java Feb 4th, 2009 |
| Replies: 2 Views: 3,216 |
Forum: Java Feb 4th, 2009 |
| Replies: 2 Views: 3,216 I get the error test cannot be resolved to a type here test[] arrayOftest = new test[ 3 ];
- ideas or help?
public class Test {
public static void main( String args[] )
{
... |
Forum: Java Feb 4th, 2009 |
| Replies: 2 Views: 655 Thanks,
I got it - here it is
//calculateButtonHandler.chandler = new calculateButtonHandler();
... |
Forum: Java Feb 1st, 2009 |
| Replies: 2 Views: 655 Hello, I need help on this project for school.
My instructions are "Write a program called OfficeAreaCalculator.java that displays the following prompts using two label components:
Enter... |
Forum: Java Jan 18th, 2009 |
| Replies: 3 Views: 499 Well thanks anyway but I got it solved. My problem was here
if ( row < middle){
spaces = spaces - 1;
stars = stars + 2;
}
else{ |
Forum: Java Jan 18th, 2009 |
| Replies: 3 Views: 499 Thanks for the reply . .
the diamond should be filled
*
**
***
**
* |
Forum: Java Jan 18th, 2009 |
| Replies: 3 Views: 499 I'm new in Java and supposed to write a program that prints a number into a diamond shape. It doesn't print correctly, can someone point out where I'm messed up?
private static void... |
Forum: Java Jan 10th, 2009 |
| Replies: 3 Views: 532 Well thanks,
I knew it was going to be super simple and was overlooking it - I had read that page and totally passed over what I needed there.
(*must stop making assumptions about code when... |
Forum: Java Jan 10th, 2009 |
| Replies: 3 Views: 532 comeon - someone give me a hint here |
Forum: Java Jan 10th, 2009 |
| Replies: 3 Views: 532 ok, I'm taking my first Java class and in my first week. I've searched but this is different from .Net so much that I have a headache just getting eclipse set up and how to navigate the environment.... |