Advertisement
IvanOseledko

Homework14

Sep 27th, 2023 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Hw14
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             string password = "qwerty";
  10.             int totalAttepmtsToEnterPassword = 3;
  11.             int remainingNumberOfAttempts = 3;
  12.             string userInputOfPassword;
  13.  
  14.             for (int i = 0; i < totalAttepmtsToEnterPassword; i++)
  15.             {
  16.                 Console.Write("Введите пароль: ");
  17.                 userInputOfPassword = Console.ReadLine();
  18.  
  19.                 if (userInputOfPassword == password)
  20.                 {
  21.                     Console.WriteLine("Секретное сообщение");
  22.                     break;
  23.                 }
  24.                 else
  25.                 {
  26.                     remainingNumberOfAttempts--;
  27.                     Console.WriteLine($"Пароль введен неверно. Осталось попыток для ввода: {remainingNumberOfAttempts}\n");
  28.                 }
  29.             }
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement