Spocoman

02. Password

Nov 20th, 2021 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Password
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string username = Console.ReadLine();
  10.             string password = Console.ReadLine();
  11.  
  12.             string input = Console.ReadLine();
  13.             while (input != password)
  14.             {
  15.                 input = Console.ReadLine();
  16.             }
  17.             Console.WriteLine($"Welcome {username}!");
  18.         }
  19.     }
  20. }
  21.  
Add Comment
Please, Sign In to add comment