Advertisement
Spocoman

Fitness Center

Nov 26th, 2021
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.73 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FitnessCenter
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int visitors = int.Parse(Console.ReadLine());
  10.             int back = 0;
  11.             int chest = 0;
  12.             int legs = 0;
  13.             int abs = 0;
  14.             int proteinShake = 0;
  15.             int proteinBar = 0;
  16.            
  17.             for (int i = 0; i < visitors; i++)
  18.             {
  19.                 string action = Console.ReadLine();
  20.  
  21.                 switch (action)
  22.                 {
  23.                     case "Back":
  24.                         back++;
  25.                         break;
  26.                     case "Chest":
  27.                         chest++;
  28.                         break;
  29.                     case "Legs":
  30.                         legs++;
  31.                         break;
  32.                     case "Abs":
  33.                         abs++;
  34.                         break;
  35.                     case "Protein shake":
  36.                         proteinShake++;
  37.                         break;
  38.                     case "Protein bar":
  39.                         proteinBar ++;
  40.                         break;
  41.                 }
  42.             }
  43.            
  44.             Console.WriteLine($"{back} - back");
  45.             Console.WriteLine($"{chest} - chest");
  46.             Console.WriteLine($"{legs} - legs");
  47.             Console.WriteLine($"{abs} - abs");
  48.             Console.WriteLine($"{proteinShake} - protein shake");
  49.             Console.WriteLine($"{proteinBar} - protein bar");
  50.             Console.WriteLine($"{(double)(back + chest + legs + abs) / visitors * 100:F2}% - work out");
  51.             Console.WriteLine($"{(double)(proteinShake + proteinBar) / visitors * 100:F2}% - protein");
  52.         }
  53.     }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement