Spocoman

05. Vacation

Nov 18th, 2021 (edited)
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.39 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Vacation
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double budget = double.Parse(Console.ReadLine());
  10.             string season = Console.ReadLine();
  11.             string location = "";
  12.             string place = "";
  13.  
  14.             if (season == "Summer")
  15.             {
  16.                 location = "Alaska";
  17.             }
  18.             else
  19.             {
  20.                 location = "Morocco";
  21.             }
  22.  
  23.             if (budget > 3000)
  24.             {
  25.                 place = "Hotel";
  26.                 budget = 0.9 * budget;
  27.             }
  28.  
  29.             else if (budget > 1000 && budget <= 3000)
  30.             {
  31.  
  32.                 if (season == "Summer")
  33.                 {
  34.                     budget = 0.8 * budget;
  35.                 }
  36.                 else
  37.                 {
  38.                     budget = 0.6 * budget;
  39.                 }
  40.                 place = "Hut";
  41.  
  42.             }
  43.             else if (budget > 0 && budget <= 1000)
  44.             {
  45.                 if (season == "Summer")
  46.                 {
  47.                     budget = 0.65 * budget;
  48.                 }
  49.                 else
  50.                 {
  51.                     budget = 0.45 * budget;
  52.                 }
  53.                 place = "Camp";
  54.             }
  55.            
  56.             Console.WriteLine($"{location} - {place} - {budget:F2}");
  57.         }
  58.     }
  59. }
  60.  
Add Comment
Please, Sign In to add comment