Advertisement
MladenKarachanov

Paswword

May 12th, 2024
665
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. package firstStepsInCoding;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class DemoWhile3Paswword {
  6.     public static void main(String[] args) {
  7.         Scanner scanner= new Scanner(System.in);
  8.         String pass =scanner.nextLine();
  9.         String name=scanner.nextLine();
  10.         String input=scanner.nextLine();
  11.         while (! input.equals(pass)){
  12.             input=scanner.nextLine();
  13.  
  14.         }
  15.         System.out.printf("Welcome %s !",name);
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement