Advertisement
Spocoman

Movie Destination

Nov 24th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.96 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MovieDestination
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double budget = double.Parse(Console.ReadLine());
  10.             string destination = Console.ReadLine();
  11.             string season = Console.ReadLine();
  12.             int days = int.Parse(Console.ReadLine());
  13.             double sum = 0;
  14.            
  15.  
  16.             switch (destination)
  17.             {
  18.                 case "Dubai":
  19.                     switch (season)
  20.                     {
  21.                         case "Winter":
  22.                             sum = 0.7 * 45000;
  23.                             break;
  24.  
  25.                         case "Summer":
  26.                             sum = 40000 * 0.7;
  27.                             break;
  28.                     }
  29.                     break;
  30.  
  31.                 case "Sofia":
  32.                     switch (season)
  33.                     {
  34.                         case "Winter":
  35.                             sum = 1.25 * 17000;
  36.                             break;
  37.  
  38.                         case "Summer":
  39.                             sum = 12500 * 1.25;
  40.                             break;
  41.                     }
  42.                     break;
  43.  
  44.                 case "London":
  45.                     switch (season)
  46.                     {
  47.                         case "Winter":
  48.                             sum = 24000;
  49.                             break;
  50.  
  51.                         case "Summer":
  52.                             sum = 20250;
  53.                             break;
  54.                     }
  55.                     break;
  56.             }
  57.             double total = sum * days;
  58.  
  59.             if (total <= budget)
  60.             {
  61.                 Console.WriteLine($"The budget for the movie is enough! We have {budget - total:F2} leva left!");
  62.             }
  63.             else
  64.             {
  65.                 Console.WriteLine($"The director needs {total - budget:F2} leva more!");
  66.             }    
  67.         }
  68.     }
  69. }
  70.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement