Search:

Type: Posts; User: javapenguin

Search: Search took 0.10 seconds.

  1. Replies
    5
    Views
    1,367

    Re: Problems with Code?

    How about this:

    boolean firstLoop = false;
    while (firstLoop != true)
    {
    try
    {
    password = scanReader.nextLine ();
    passwordLength =...
  2. Replies
    5
    Views
    1,367

    Re: Problems with Code?

    Also, it's

    while (firstLoop == true)

    anyway.
  3. Replies
    5
    Views
    1,367

    Re: Problems with Code?

    It looks like firstloop is never set to false.

    Great way for an infinite loop.
Results 1 to 3 of 3