Advertisement
Spocoman

Gymnastics

Nov 28th, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.16 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Gymnastics
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string country = Console.ReadLine();
  10.             string device = Console.ReadLine();
  11.             double difficulty = 0;
  12.             double performance = 0;
  13.  
  14.             if (country == "Russia")
  15.             {
  16.                 if (device == "ribbon")
  17.                 {
  18.                     difficulty = 9.100;
  19.                     performance = 9.400;
  20.                 }
  21.                 else if (device == "hoop")
  22.                 {
  23.                     difficulty = 9.300;
  24.                     performance = 9.800;
  25.                 }
  26.                 else if (device == "rope")
  27.                 {
  28.                     difficulty = 9.600;
  29.                     performance = 9.000;
  30.                 }
  31.             }
  32.             else if (country == "Bulgaria")
  33.             {
  34.                 if (device == "ribbon")
  35.                 {
  36.                     difficulty = 9.600;
  37.                     performance = 9.400;
  38.                 }
  39.                 else if (device == "hoop")
  40.                 {
  41.                     difficulty = 9.550;
  42.                     performance = 9.750;
  43.                 }
  44.                 else if (device == "rope")
  45.                 {
  46.                     difficulty = 9.500;
  47.                     performance = 9.400;
  48.                 }
  49.             }
  50.             else if (country == "Italy")
  51.             {
  52.                 if (device == "ribbon")
  53.                 {
  54.                     difficulty = 9.200;
  55.                     performance = 9.500;
  56.                 }
  57.                 else if (device == "hoop")
  58.                 {
  59.                     difficulty = 9.450;
  60.                     performance = 9.350;
  61.                 }
  62.                 else if (device == "rope")
  63.                 {
  64.                     difficulty = 9.700;
  65.                     performance = 9.150;
  66.                 }
  67.             }
  68.             double score = difficulty + performance;
  69.             Console.WriteLine($"The team of {country} get {score:f3} on {device}.");
  70.             Console.WriteLine($"{(20 - score) / 20 * 100:f2}%");
  71.         }
  72.     }
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement