Исправить код игры «Камень-ножницы-бумага» - C#

Узнай цену своей работы

Формулировка задачи:

Условие: 1-й класс должен содержать следующие элементы: конструкторы , методы, свойства. 2-й класс должен содержать метод Main, в котором должна выполняться проверка разработанных элементов класса. Игрок первым выбирает вариант, затем случайно компьютер. Предусмотреть метод очередного хода, свойство «счет», метод обнуления счета. В случае ввода недопустимых значений - исключения.
Листинг программы
  1. using System;
  2. namespace ConsoleApplication11
  3. {
  4. class game
  5. {
  6. static void Main()
  7. {
  8. string[] combs = { "Камень", "Ножницы", "Бумага" };
  9. Random random = new Random();
  10. do
  11. {
  12. var r = random.Next(3);
  13. Console.WriteLine("Введите свое значение");
  14. for (int i = 0; i < combs.Length; i++)
  15. {
  16. Console.WriteLine("{0} {1}", i, combs[i]);
  17. }
  18. uint input;
  19. while (!uint.TryParse(Console.ReadLine(), out input) || input > 2)
  20. {
  21. }
  22. Console.WriteLine("Компьютер выбрал {0}, вы выбрали {1}", combs[r], combs[input]);
  23. if (r == input)
  24. Console.WriteLine("Ничья");
  25. else if (input == 2 && r == 0 || input < r)
  26. Console.WriteLine("Поражение");
  27. else
  28. Console.WriteLine("Победа");
  29. Console.WriteLine("Попробовать еще раз? Y/N");
  30. }
  31. while (Console.ReadKey(true).Key == ConsoleKey.Y);
  32. Console.WriteLine("Игра окончена, нажмите любую клавишу");
  33. Console.ReadKey();
  34. }
  35. }
  36. }

Решение задачи: «Исправить код игры «Камень-ножницы-бумага»»

textual
Листинг программы
  1. using System;
  2. using System.Linq;
  3. using System.Threading;
  4.  
  5. internal class Program
  6. {
  7.     private static Game game;
  8.     private static Random rnd = new Random();
  9.     private static string history = "";
  10.  
  11.     private static void Main(string[] args)
  12.     {
  13.         game = new Game();
  14.         int result = Play();
  15.         if (result > 0)
  16.             Console.WriteLine("Победа!");
  17.         else if (result < 0)
  18.             Console.WriteLine("Проигрыш...");
  19.         else
  20.             Console.WriteLine("Ничья");
  21.         Thread.Sleep(1000);
  22.     }
  23.  
  24.     private static int Play(int index = 0)
  25.     {
  26.         Console.Clear();
  27.         Func<int, string> get = n =>
  28.             n == 0 ? "Камень" : n == 1 ? "Ножницы" : "Бумага";
  29.         int i = 0, score = game.Player1 - game.Player2;
  30.         Action<string> write = s =>
  31.         {
  32.             if (i++ == index)
  33.             {
  34.                 Console.ForegroundColor = ConsoleColor.White;
  35.                 Console.BackgroundColor = ConsoleColor.Gray;
  36.             }
  37.             Console.Write(s);
  38.             Console.ResetColor();
  39.             Console.Write("  ");
  40.         };
  41.         write(get(0));
  42.         write(get(1));
  43.         write(get(2));
  44.         Console.WriteLine("\r\nВаш счет : {0}", score);
  45.         if (history.Count('\n'.Equals) > 20)
  46.         {
  47.             history = history.Remove(0, history.IndexOf('\n') + 1);
  48.         }
  49.         Console.Write(history);
  50.         switch (Console.ReadKey().Key)
  51.         {
  52.             case ConsoleKey.Enter:
  53.             {
  54.                 int c = rnd.Next(0, 3);
  55.                 history += String.Format(
  56.                     "Вы выбрали {0}, компьютер выбрал {1}\r\n",
  57.                     get(index), get(c));
  58.                 game.Play(index, c);
  59.                 break;
  60.             }
  61.             case ConsoleKey.Escape:
  62.             {
  63.                 Console.Clear();
  64.                 return score;
  65.             }
  66.             case ConsoleKey.LeftArrow:
  67.             {
  68.                 index += 2;
  69.                 break;
  70.             }
  71.             case ConsoleKey.RightArrow:
  72.             {
  73.                 index++;
  74.                 break;
  75.             }
  76.         }
  77.         return Play(index%3);
  78.     }
  79. }
  80.  
  81. internal class Game
  82. {
  83.     public int Player1 = 0, Player2 = 0;
  84.  
  85.     public void Play(int player1, int player2)
  86.  
  87.     {
  88.  
  89.         int res = player1 - player2;
  90.         if (res == 0)
  91.             return;
  92.         if (res == -1 || res == 2)
  93.             Player1++;
  94.         else Player2++;
  95.     }
  96. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

15   голосов , оценка 4.333 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы