Spocoman

Game Number Wars

Nov 25th, 2021 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.63 KB | None | 0 0
  1. using System;
  2.  
  3. namespace GameNumberWars
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string player1 = Console.ReadLine();
  10.             string player2 = Console.ReadLine();
  11.             string command = Console.ReadLine();
  12.  
  13.             int point1 = 0;
  14.             int point2 = 0;
  15.  
  16.             while (command != "End of game")
  17.             {
  18.                 int card01 = int.Parse(command);
  19.                 int card02 = int.Parse(Console.ReadLine());
  20.  
  21.                 if (card01 > card02)
  22.                 {
  23.                     point1 += card01 - card02;
  24.                 }
  25.                 else if (card01 < card02)
  26.                 {
  27.                     point2 += card02 - card01;
  28.                 }
  29.                 else
  30.                 {
  31.                     card01 = int.Parse(Console.ReadLine());
  32.                     card02 = int.Parse(Console.ReadLine());
  33.                     Console.WriteLine("Number wars!");
  34.  
  35.                     if (card01 > card02)
  36.                     {
  37.                         Console.WriteLine($"{player1} is winner with {point1} points");
  38.                     }
  39.                     else
  40.                     {
  41.                         Console.WriteLine($"{player2} is winner with {point2} points");
  42.                     }
  43.                     break;
  44.                 }
  45.                 command = Console.ReadLine();
  46.             }
  47.  
  48.             if (command == "End of game")
  49.             {
  50.                 Console.WriteLine($"{player1} has {point1} points");
  51.                 Console.WriteLine($"{player2} has {point2} points");
  52.             }
  53.         }
  54.     }
  55. }
Add Comment
Please, Sign In to add comment