Advertisement
Spocoman

Final Competition

May 28th, 2022
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.14 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FinalCompetition
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int dancers = int.Parse(Console.ReadLine());
  10.             double points = double.Parse(Console.ReadLine());
  11.             string season = Console.ReadLine();
  12.             string destination = Console.ReadLine();
  13.  
  14.             double totalSum = dancers * points;
  15.  
  16.             if (destination == "Abroad")
  17.             {
  18.                 totalSum *= 1.5;
  19.                 if (season == "summer")
  20.                 {
  21.                     totalSum *= 0.9;
  22.                 }
  23.                 else
  24.                 {
  25.                     totalSum *= 0.85;
  26.                 }
  27.             }
  28.             else
  29.             {
  30.                 if (season == "summer")
  31.                 {
  32.                     totalSum *= 0.95;
  33.                 }
  34.                 else
  35.                 {
  36.                     totalSum *= 0.92;
  37.                 }
  38.             }
  39.             Console.WriteLine($"Charity - { totalSum * 0.75:F2}");
  40.             Console.WriteLine($"Money per dancer - { totalSum * 0.25 / dancers: F2}");
  41.         }
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement