Advertisement
Montagne94

15. Программа под паролем

Jan 7th, 2025 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.82 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace HomeWork
  4. {
  5.     internal class Program
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             string password = "123";
  10.             string message = "Тайное сообщение!";
  11.             int maxAttempts = 3;
  12.  
  13.             for (int i = 0; i < maxAttempts; i++)
  14.             {
  15.                 Console.WriteLine("Введите пароль: ");
  16.                 string userInput = Console.ReadLine();
  17.  
  18.                 if (password == userInput)
  19.                 {
  20.                     Console.WriteLine();
  21.                     Console.WriteLine(message);
  22.  
  23.                     break;
  24.                 }
  25.             }
  26.            
  27.             Console.WriteLine("Вы исчерпали все попытки. Доступ заблокирован.");
  28.         }
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement