Advertisement
dragonbs

Password

Oct 23rd, 2022
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _02.Password
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string potrIme = Console.ReadLine();
  10.             string passWord = Console.ReadLine();
  11.  
  12.             string inputT = Console.ReadLine();
  13.             while (inputT != passWord)
  14.             {
  15.                 inputT = Console.ReadLine();
  16.             }
  17.             Console.WriteLine($"Welcome {potrIme}!");
  18.         }
  19.     }
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement