Advertisement
Montagne94

9. Контроль входа

Mar 14th, 2023 (edited)
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1. public class Program
  2. {
  3.     private static void Main(string[] args)
  4.     {
  5.         string keyword = "Exit";
  6.         string password = "";
  7.  
  8.         while (password.ToUpper() != keyword.ToUpper())
  9.         {
  10.             Console.WriteLine("Введите пароль");
  11.             password = Console.ReadLine();
  12.             Console.Clear();
  13.         }
  14.  
  15.         Console.WriteLine("Вы ввели верный пароль");
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement