Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package lekciq_3;
- import java.util.Scanner;
- public class task05 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- String password = scanner.nextLine();
- if (password.equals("s3cr3t!P@ssw0rd")) {
- System.out.println("Welcome");
- } else {
- System.out.println("Wrong password!");
- }
- }
- }
Add Comment
Please, Sign In to add comment