Search:

Type: Posts; User: sstaurus12

Search: Search took 0.20 seconds.

  1. Replies
    17
    Views
    1,956

    Re: Problem with my simple pw verifier

    nvm im sorry...I see it now

    just figuring out how to get the loop to stop, it doesn't move on to the method Im using to print the passwords and whether they were valid or not. I just have to keep...
  2. Replies
    17
    Views
    1,956

    Re: Problem with my simple pw verifier

    import java.util.Scanner;
    import java.io.*;

    public class PasswordChecker {

    private String password = " ";
    private String testPlanAuthor = " ";
    private...
  3. Replies
    17
    Views
    1,956

    Re: Problem with my simple pw verifier

    I dont want it to just add the previous pw im still just struggling with getting it to print out a new blank space in the scanner for the next password inside the for loop.

    this portion below

    ...
  4. Replies
    17
    Views
    1,956

    Re: Problem with my simple pw verifier

    no I just did password = keyboard.nextLine(); and it still concatenates
  5. Replies
    17
    Views
    1,956

    Re: Problem with my simple pw verifier

    Still fighting with it.
    Im not sure I know where to use the nextLine() method to clear the buffer. Right after the nextInt? I fixed the strings with "" Im not sure I understand what I need to add...
  6. Replies
    17
    Views
    1,956

    Re: Problem with my simple pw verifier

    I did not post all of the code, i thought the problem might exist within that first half of the program since that was where I declared and initialized my variables.

    --- Update ---



    import...
  7. Replies
    17
    Views
    1,956

    Re: Problem with my simple pw verifier

    import java.util.Scanner;
    import java.io.*;

    public class PasswordChecker {

    private String password;
    private String testPlanAuthor;
    private String...
  8. Replies
    17
    Views
    1,956

    Re: Problem with my simple pw verifier

    Please follow along with the program to verify your passwords.
    I am using a Scanner for the program.

    Please enter your name: nulls ("null" appears for some reason)
    Please enther the number of...
  9. Replies
    17
    Views
    1,956

    Problem with my simple pw verifier

    Hello,

    I am working on a password verifier that checks the characters to meet a certain criteria. The user enters in the number of passwords they need to check and then prompts them to enter each...
Results 1 to 9 of 9