Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace C_Sharp_Junior
- {
- class Program
- {
- static void Main(string[] args)
- {
- string password = "ЯЮниор";
- for (int tryCount = 2; tryCount >= 0; tryCount--)
- {
- Console.Write("Введите пaроль:");
- string userInpyt = Console.ReadLine();
- if (password == userInpyt)
- {
- Console.WriteLine("Верно, печенка!");
- break;
- }
- else if (tryCount >= 1)
- {
- Console.WriteLine("Доступ закрыт");
- }
- else if (tryCount == 0)
- {
- Console.WriteLine("Самоуничтожение реактора!!!(BOOM!)");
- }
- }
- Console.ReadKey();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment