Search:

Type: Posts; User: Junky

Search: Search took 0.07 seconds.

  1. [SOLVED] Re: I am a java newb and I am having a problem with my while loops.

    Any decent book or online tutorial will explain methods.
  2. [SOLVED] Re: I am a java newb and I am having a problem with my while loops.

    while [boolean rightguess1 = false];

    That is not even valid Java syntax.
    You are making an assignment and not a comparison. Beside when using booleans you can use them directly in your...
  3. [SOLVED] Re: I am a java newb and I am having a problem with my while loops.

    That's not an error message. This is an error message!

    Test.java:5: cannot find symbol
    symbol : variable n
    location: class Test
    System.out.println(n);
    ^
    1...
  4. [SOLVED] Re: I am a java newb and I am having a problem with my while loops.

    In future you need to copy and paste the full and exact error messages. They contain vital information. You also need to copy and paste the latest version of your code. Even if you make a small...
Results 1 to 4 of 4