Advertisement
Gudini

Homework2_8

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