Spocoman

07. Trekking Mania

Nov 20th, 2021 (edited)
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.55 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TrekkingMania
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int groupNumbers = int.Parse(Console.ReadLine());
  10.             int musala = 0;
  11.             int montBlanc = 0;
  12.             int kilimanjaro = 0;
  13.             int k2 = 0;
  14.             int everest = 0;
  15.             int alpinistSum = 0;
  16.  
  17.             for (int i = 0; i < groupNumbers; i++)
  18.             {
  19.                 int currentGroup = int.Parse(Console.ReadLine());
  20.                 alpinistSum += currentGroup;
  21.  
  22.                 if (currentGroup > 40)
  23.                 {
  24.                     everest += currentGroup;
  25.                 }
  26.                 else if (currentGroup > 25)
  27.                 {
  28.                     k2 += currentGroup;
  29.                 }
  30.                 else if (currentGroup > 12)
  31.                 {
  32.                     kilimanjaro += currentGroup;
  33.                 }
  34.                 else if (currentGroup > 5)
  35.                 {
  36.                     montBlanc += currentGroup;
  37.                 }
  38.                 else if (currentGroup > 0)
  39.                 {
  40.                     musala += currentGroup;
  41.                 }
  42.             }
  43.             Console.WriteLine($"{100.0 * musala / alpinistSum:f2}%");
  44.             Console.WriteLine($"{100.0 * montBlanc / alpinistSum:f2}%");
  45.             Console.WriteLine($"{100.0 * kilimanjaro / alpinistSum:f2}%");
  46.             Console.WriteLine($"{100.0 * k2 / alpinistSum:f2}%");
  47.             Console.WriteLine($"{100.0 * everest / alpinistSum:f2}%");
  48.         }
  49.     }
  50. }
  51.  
Add Comment
Please, Sign In to add comment