Advertisement
Spocoman

Tournament of Christmas

Nov 24th, 2021 (edited)
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.66 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TournamentOfChristmas
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int days = int.Parse(Console.ReadLine());
  10.            
  11.             int winTotal = 0;
  12.             int loseTotal = 0;  
  13.             double totalSum = 0;
  14.  
  15.             for (int i = 0; i < days; i++)
  16.             {
  17.                 int win = 0;
  18.                 int lose = 0;
  19.                 double sum = 0;
  20.                 while (true)
  21.                 {
  22.                     string command = Console.ReadLine();
  23.                     if (command == "win")
  24.                     {
  25.                         sum += 20;
  26.                         win++;
  27.                     }
  28.                     else if (command == "lose")
  29.                     {
  30.                         lose++;
  31.                     }
  32.                     else if (command == "Finish")
  33.                     {
  34.                         if (win > lose)
  35.                         {
  36.                             totalSum += sum * 1.1;
  37.                             winTotal += win;
  38.                         }
  39.                         else
  40.                         {
  41.                             totalSum += sum;
  42.                             loseTotal += lose;
  43.                         }
  44.                         break;
  45.                     }
  46.                 }
  47.             }
  48.  
  49.             if (winTotal > loseTotal)
  50.             {
  51.                 Console.WriteLine($"You won the tournament! Total raised money: {totalSum * 1.2:F2}");
  52.             }
  53.             else
  54.             {
  55.                 Console.WriteLine($"You lost the tournament! Total raised money: {totalSum:F2}");
  56.             }
  57.         }
  58.     }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement