Georgi_Benchev

Untitled

Nov 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. package lekciq_3;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class task05 {
  6.     public static void main(String[] args) {
  7.         Scanner scanner = new Scanner(System.in);
  8.         String password = scanner.nextLine();
  9.  
  10.         if (password.equals("s3cr3t!P@ssw0rd")) {
  11.             System.out.println("Welcome");
  12.         } else {
  13.             System.out.println("Wrong password!");
  14.         }
  15.  
  16.     }
  17. }
Add Comment
Please, Sign In to add comment