Advertisement
Spocoman

Football League

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