Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main{
  4. public static void main(String[] args) {
  5.  
  6. Scanner str = new Scanner(System.in);
  7.  
  8. System.out.print("Enter your login: ");
  9.  
  10. String login = str.nextLine();
  11.  
  12. if(login.equals("Admin")) {
  13.  
  14. System.out.print("Enter your password: ");
  15.  
  16. String password = str.nextLine();
  17.  
  18. if(password.equals("123")) {
  19. System.out.print("Welcome...");
  20. }
  21.  
  22. } else {
  23. System.out.println("Error");
  24. }
  25.  
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement