Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Homework12
- {
- class Program
- {
- static void Main(string[] args)
- {
- int tryCount = 3;
- string password = "13or32ew";
- for (int i = tryCount; i > 0; i--)
- {
- Console.Write($"У вас {i} попытки(а). Введите пароль:");
- string userInput = Console.ReadLine();
- if (userInput == password)
- {
- Console.WriteLine("Пароль верен!");
- break;
- }
- else
- {
- Console.WriteLine("Неверно!");
- }
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment