Spocoman

07. School Camp

Nov 18th, 2021 (edited)
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.31 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SchoolCamp
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string season = Console.ReadLine();
  10.             string group = Console.ReadLine();
  11.             int people = int.Parse(Console.ReadLine());
  12.             int night = int.Parse(Console.ReadLine());
  13.             double sum = 0;
  14.             string sport = "";
  15.  
  16.             if (season == "Winter")
  17.             {
  18.                 if (group == "boys")
  19.                 {
  20.                     sum = 9.6;
  21.                     sport = "Judo";
  22.                 }
  23.                 else if (group == "girls")
  24.                 {
  25.                     sum = 9.6;
  26.                     sport = "Gymnastics";
  27.                 }
  28.                 else if (group == "mixed")
  29.                 {
  30.                     sum = 10;
  31.                     sport = "Ski";
  32.                 }
  33.             }
  34.             else if (season == "Spring")
  35.             {
  36.                 if (group == "boys")
  37.                 {
  38.                     sum = 7.2;
  39.                     sport = "Tennis";
  40.                 }
  41.                 else if (group == "girls")
  42.                 {
  43.                     sum = 7.2;
  44.                     sport = "Athletics";
  45.                 }
  46.                 else if (group == "mixed")
  47.                 {
  48.                     sum = 9.5;
  49.                     sport = "Cycling";
  50.                 }
  51.             }
  52.             else
  53.             {
  54.                 if (group == "boys")
  55.                 {
  56.                     sum = 15;
  57.                     sport = "Football";
  58.                 }
  59.  
  60.                 else if (group == "girls")
  61.                 {
  62.                     sum = 15;
  63.                     sport = "Volleyball";
  64.                 }
  65.                 else if (group == "mixed")
  66.                 {
  67.                     sum = 20;
  68.                     sport = "Swimming";
  69.                 }
  70.  
  71.             }
  72.  
  73.             if (people >= 10 && people < 20)
  74.             {
  75.                 sum *= 0.95;
  76.             }
  77.             else if (people >= 20 && people < 50)
  78.             {
  79.                 sum *= 0.85;
  80.             }
  81.             else if (people >= 50)
  82.             {
  83.                 sum *= 0.5;
  84.             }
  85.  
  86.             Console.WriteLine($"{sport} {people * sum * night:F2} lv.");
  87.         }
  88.     }
  89. }
  90.  
Add Comment
Please, Sign In to add comment