Advertisement
Guest User

Untitled

a guest
Feb 18th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. /**
  4. * Created by jordandevaney on 2/18/17.
  5. */
  6. public class ImputNameAndPassword {
  7.  
  8. public static void main(String[] args) {
  9.  
  10.  
  11. System.out.println("Enter your username: ");
  12. Scanner scanner = new Scanner(System.in);
  13. String userinput = scanner.nextLine();
  14.  
  15.  
  16. System.out.println("Your username is " + userinput);
  17. System.out.println("Enter your password: ");
  18. String password = scanner.nextLine();
  19. System.out.println("Your password is " + password);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement