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 ConsoleApp5
- {
- class Program
- {
- static void Main(string[] args)
- {
- string password = "blabla123";
- int tryCount = 3;
- for (int x = tryCount; x > 0; x--)
- {
- Console.WriteLine($"У вас есть {x} попыток\nВведите пароль: ");
- string userInput = Console.ReadLine();
- if (userInput == password)
- {
- Console.WriteLine("Вы вошли!");
- Console.ForegroundColor = ConsoleColor.Red;
- Console.WriteLine("Конец света будет 23 декабря 2020 года!!!");
- Console.ResetColor();
- Console.ReadKey();
- break;
- }
- else
- {
- Console.WriteLine("Пароль введен не верно\nНажмите любую клавишу, чтобы продолжить...");
- Console.ReadKey();
- }
- Console.Clear();
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment