Spocoman

Series

Nov 27th, 2021 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Series
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double budget = double.Parse(Console.ReadLine());
  10.             int volume = int.Parse(Console.ReadLine());
  11.  
  12.             for (int i = 0; i < volume; i++)
  13.             {
  14.                 string name = Console.ReadLine();
  15.                 double cash = double.Parse(Console.ReadLine());
  16.  
  17.                 switch (name)
  18.                 {
  19.                     case "Thrones":
  20.                         cash /= 2;
  21.                         break;
  22.                     case "Lucifer":
  23.                         cash *= 0.6;
  24.                         break;
  25.                     case "Protector":
  26.                         cash *= 0.7;
  27.                         break;
  28.                     case "TotalDrama":
  29.                         cash *= 0.8;
  30.                         break;
  31.                     case "Area":
  32.                         cash *= 0.9;
  33.                         break;
  34.                 }
  35.                 budget -= cash;
  36.             }
  37.  
  38.             if (budget >= 0)
  39.             {
  40.                 Console.WriteLine($"You bought all the series and left with {budget:F2} lv.");
  41.             }
  42.             else
  43.             {
  44.                 Console.WriteLine($"You need {Math.Abs(budget):F2} lv. more to buy the series!");
  45.             }
  46.         }
  47.     }
  48. }
Add Comment
Please, Sign In to add comment