Advertisement
TargeTPoweR

Untitled

Mar 19th, 2020
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace tasks
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. string password = "атасменты";
  14. string userInput;
  15. int tryCount = 3;
  16.  
  17. for (int i = 0; i < tryCount; i ++)
  18. {
  19. Console.WriteLine("Введите пароль.");
  20. userInput = Console.ReadLine();
  21.  
  22. if (userInput == password)
  23. {
  24. Console.WriteLine("100 шагов на север от центральных ворот.");
  25. break;
  26. }
  27. else
  28. {
  29. Console.WriteLine("Попробуйте ещё раз.");
  30. }
  31. }
  32.  
  33. }
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement