Advertisement
vovanhik_24

#15

Aug 22nd, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.55 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             string passwordInput;
  4.             string correctPassword = "12345";
  5.             int countAttemp = 3;
  6.  
  7.             for(int i = 0; i < countAttemp; i++)
  8.             {
  9.                 Console.Write("Введите пароль: ");
  10.                 passwordInput = Console.ReadLine();
  11.  
  12.                 if(passwordInput == correctPassword)
  13.                 {
  14.                     Console.WriteLine("Секретики!");
  15.                     break;
  16.                 }
  17.             }
  18.          }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement