Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. using System;
  2. namespace ConsoleApp1
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8.  
  9. string a, i = "Троллейбус", r="Сдаюся";
  10. int d = 1;
  11.  
  12. Console.WriteLine("слы атгадайка слово у тя 3 попытки чувырло.");
  13. Console.WriteLine("это не троллейбус кста те разрешено сдацаб. ");
  14. a = Console.ReadLine();
  15.  
  16. while (d <= 2)
  17. {
  18. if (r == a)
  19. {
  20.  
  21. }
  22.  
  23. d++;
  24. if (i == a && d <= 2)
  25.  
  26. {
  27. Console.WriteLine("Молорик, ты угадал это был " + i);
  28.  
  29. d = 3;
  30.  
  31. }
  32. else
  33. {
  34. Console.WriteLine("Камон мужик давай попробуй еще раз");
  35. a = Console.ReadLine();
  36.  
  37. }
  38.  
  39. }
  40.  
  41. if (d > 1 && d!=3)
  42. {
  43. Console.WriteLine("Ну и лах ты продул");
  44. }
  45. }
  46. }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement