Advertisement
Spocoman

Football Tournament

Nov 25th, 2021
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.62 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FootballTournament
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string team = Console.ReadLine();
  10.             int match = int.Parse(Console.ReadLine());
  11.             double w = 0;
  12.             double d = 0;
  13.             double l = 0;
  14.             double counter = 0;
  15.            
  16.             for (int i = 0; i < match; i++)
  17.             {
  18.                 if (match == 0)
  19.                 {
  20.                     break;
  21.                 }
  22.                 string result = Console.ReadLine();
  23.                 switch (result)
  24.                 {
  25.                     case "W":
  26.                         w++;
  27.                         break;
  28.  
  29.                     case "D":
  30.                         d++;
  31.                         break;
  32.  
  33.                     case "L":
  34.                         l++;
  35.                         break;
  36.                 }
  37.  
  38.                 if (counter == match)
  39.                 {
  40.                     break;
  41.                 }
  42.             }
  43.  
  44.             if (match == 0)
  45.             {
  46.                 Console.WriteLine($"{team} hasn't played any games during this season.");
  47.             }
  48.             else
  49.             {
  50.                
  51.                 Console.WriteLine($"{team} has won {w * 3 + d:F0} points during this season.");
  52.                 Console.WriteLine("Total stats:");
  53.                 Console.WriteLine($"## W: {w}");
  54.                 Console.WriteLine($"## D: {d}");
  55.                 Console.WriteLine($"## L: {l}");
  56.                 Console.WriteLine($"Win rate: {w / match * 100:F2}%");
  57.             }
  58.         }
  59.     }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement