Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package firstStepsInCoding;
- import java.util.Scanner;
- public class DemoWhile3Paswword {
- public static void main(String[] args) {
- Scanner scanner= new Scanner(System.in);
- String pass =scanner.nextLine();
- String name=scanner.nextLine();
- String input=scanner.nextLine();
- while (! input.equals(pass)){
- input=scanner.nextLine();
- }
- System.out.printf("Welcome %s !",name);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement