Search:

Type: Posts; User: Norm

Search: Search took 0.11 seconds.

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

    Do a Google. Anytime you try to read something it is possible for there to be something going wrong and throwing an exception.
  2. [SOLVED] Re: I am a java newb and I am having a problem with my while loops.

    InputStreamReader istream = new InputStreamReader(System.in);
    BufferedReader ubuff = new BufferedReader (istream);
    These could be outside the loop. No need to create them every time you loop
  3. [SOLVED] Re: I am a java newb and I am having a problem with my while loops.

    Please wrap your posted code in code tags to preserve formatting.
    See: BB Code List - Java Forums

    Most programmers would change this:
    while (whiletest == false) {
    to this
    while (!whiletest) {...
  4. [SOLVED] Re: I am a java newb and I am having a problem with my while loops.

    Please copy and paste the full text of the error message here.
    Also please wrap your posted code in code tags to preserve formatting.
    See: BB Code List - Java Forums

    while (whiletest = false) {...
  5. [SOLVED] Re: I am a java newb and I am having a problem with my while loops.

    Can you explain what you did to get this error message. Is it when you tried to execute your program?
    What command did you execute?

    The java command requires that the class you pass to it have a...
Results 1 to 5 of 5