Advertisement
Spocoman

Tennis Ranklist

Nov 27th, 2021
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.07 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TennisRanklist
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int tourney = int.Parse(Console.ReadLine());
  10.             int points = int.Parse(Console.ReadLine());
  11.             int win = 0;
  12.             int total = 0;
  13.            
  14.             for (int i = 0; i < tourney; i++)
  15.             {
  16.                 string stage = Console.ReadLine();
  17.  
  18.                 switch (stage)
  19.                 {
  20.                     case "W":
  21.                         total += 2000;
  22.                         win++;
  23.                         break;
  24.                     case "F":
  25.                         total += 1200;
  26.                         break;
  27.                     case "SF":
  28.                         total += 720;
  29.                         break;
  30.                 }
  31.             }
  32.  
  33.             Console.WriteLine($"Final points: {total + points}");
  34.             Console.WriteLine($"Average points: {Math.Floor((double)total/tourney)}");
  35.             Console.WriteLine($"{(double)win/tourney * 100:F2}%");
  36.         }
  37.     }
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement