Advertisement
dragonbs

Journey

Oct 1st, 2022
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.63 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _05.Journey
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double budgeting = double.Parse(Console.ReadLine());
  10.             string seasoning = Console.ReadLine();
  11.  
  12.             double spendMoney = 0;
  13.             string typeOfRest = string.Empty;
  14.             string destination = string.Empty;
  15.  
  16.             if (budgeting <= 100)
  17.             {
  18.                 destination = "Bulgaria";
  19.  
  20.                 if (seasoning == "summer")
  21.                 {
  22.                     spendMoney = budgeting * 0.3;
  23.                     typeOfRest = "Camp";
  24.                 }
  25.                 else if (seasoning == "winter")
  26.                 {
  27.                     spendMoney = budgeting * 0.7;
  28.                     typeOfRest = "Hotel";
  29.                 }
  30.             }
  31.             else if (budgeting <= 1000)
  32.             {
  33.                 destination = "Balkans";
  34.  
  35.                 if (seasoning == "summer")
  36.                 {
  37.                     spendMoney = budgeting * 0.4;
  38.                     typeOfRest = "Camp";
  39.                 }
  40.                 else if (seasoning == "winter")
  41.                 {
  42.                     spendMoney = budgeting * 0.8;
  43.                     typeOfRest = "Hotel";
  44.                 }
  45.             }
  46.             else if (budgeting > 1000)
  47.             {
  48.                 destination = "Europe";
  49.                 spendMoney = budgeting * 0.9;
  50.                 typeOfRest = "Hotel";
  51.             }
  52.  
  53.             Console.WriteLine($"Somewhere in {destination}");
  54.             Console.WriteLine($"{typeOfRest} - {spendMoney:F2}");
  55.         }
  56.     }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement