Spocoman

07. Football League

Nov 20th, 2021 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.31 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FootballLeague
  4.  
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int stadiumCapacity = int.Parse(Console.ReadLine());
  11.             int footballFens = int.Parse(Console.ReadLine());
  12.             double sectorA = 0;
  13.             double sectorB = 0;
  14.             double sectorV = 0;
  15.             double sectorG = 0;
  16.  
  17.             for (int i = 2; i <= footballFens + 1; i++)
  18.             {
  19.                 string input = Console.ReadLine();
  20.  
  21.                 if (input == "A")
  22.                 {
  23.                     sectorA++;
  24.                 }
  25.                 else if (input == "B")
  26.                 {
  27.                     sectorB++;
  28.                 }
  29.                 else if (input == "V")
  30.                 {
  31.                     sectorV++;
  32.                 }
  33.                 else if (input == "G")
  34.                 {
  35.                     sectorG++;
  36.                 }
  37.             }
  38.             Console.WriteLine($"{sectorA / footballFens * 100:f2}");
  39.             Console.WriteLine($"{sectorB / footballFens * 100:f2}");
  40.             Console.WriteLine($"{sectorV / footballFens * 100:f2}");
  41.             Console.WriteLine($"{sectorG / footballFens * 100:f2}");
  42.             Console.WriteLine($"{footballFens / stadiumCapacity * 100:f2}");
  43.  
  44.         }
  45.     }
  46. }
  47.  
Add Comment
Please, Sign In to add comment