Advertisement
NikaBang

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

Sep 30th, 2024 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.80 KB | None | 0 0
  1. using System;
  2.  
  3. internal class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         int triesCount = 3;
  8.         int triesRemained = triesCount;
  9.         string pasword = "пароль";
  10.         string userInput;
  11.  
  12.         for (int i = 0; i < triesCount; i++)
  13.         {
  14.             Console.Write("Введите пароль: ");
  15.             userInput = Console.ReadLine();
  16.  
  17.             if (userInput == pasword)
  18.             {
  19.                 Console.WriteLine("Пароль верный!");
  20.                 break;
  21.             }
  22.             else
  23.             {
  24.                 triesRemained--;
  25.                 Console.WriteLine("Пароль не верный!\nУ вас осталось попыток - " + triesRemained);
  26.             }
  27.         }
  28.  
  29.         Console.ReadKey();
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement