Search:

Type: Posts; User: Norm

Search: Search took 0.22 seconds.

  1. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    The loops in the check methods should be for loops not while loops.
    Its too easy to write infinite while loops
    Its hard to write infinite for loops
  2. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    Is This code that you are talking about:

    System.out.print("Please enter each password: " + (password));

    It prints the last password on the line and allows you to enter the next password...
  3. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    Please copy the full contents of the console window from when the program executes and shows the problem. When OPs makeup what they think is important they often leave out important data. A full...
  4. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    Post the new code. Somewhere it is being concatenated.
  5. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    Yes.
    The code in post#7 has that.


    Did you write this code:

    password += keyboard.nextLine();

    It concatenates the new input onto the old contents????
  6. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    Ok got it.

    The places where null is printed is because the String variable does not have a value.
    Assign them an empty String using =""

    Scanner methods can be tricky. The Scanner buffers input...
  7. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    The posted code does not compile. It has many errors that need to be fixed before the code can be tested.

    Did you post all of the code?
  8. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    That would be the value of the variable if it has not been assigned a value.

    Why do you print out the value of password at the end of the message?


    There is other code that is setting and...
  9. Replies
    17
    Views
    1,973

    Re: Problem with my simple pw verifier

    Can you copy the contents of the console window from when you execute the program to show what you are talking about? I don't see where the code does what you are talking about.

    On windows: To...
Results 1 to 9 of 9