Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1.  
  2. import java.util.Scanner;
  3.  
  4. public class Usernames {
  5.  
  6. public static void main(String[] args) {
  7. Scanner reader = new Scanner(System.in);
  8.  
  9. System.out.print("Type your username: ");
  10.  
  11. String username = reader.nextLine();
  12.  
  13. System.out.print("Type your password: ");
  14. String password = reader.nextLine();
  15.  
  16. if (!(username.equals("alex"))&& (!(password.equals("mightyducks")))){
  17. System.out.print("You are now logged into the system!");
  18. } else if (!(username.equals("emily"))&&(!(password.equals("cat")))) {
  19. System.out.print("You are now logged into the system!");
  20. } else {
  21. System.out.println("Your username or password was invalid!");
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement