Spocoman

04. Fishing Boat

Nov 17th, 2021 (edited)
65
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 FishingBoat
  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.             int people = int.Parse(Console.ReadLine());
  12.             double sum = 0;
  13.  
  14.             switch (season)
  15.             {
  16.                 case "Spring":
  17.                     sum = 3000;
  18.                     break;
  19.                 case "Summer":
  20.                 case "Autumn":
  21.                     sum = 4200;
  22.                     break;
  23.                 case "Winter":
  24.                     sum = 2600;
  25.                     break;
  26.             }
  27.  
  28.             if (people <= 6)
  29.             {
  30.                 sum *= 0.9;
  31.             }
  32.             else if (people > 6 && people <= 11)
  33.             {
  34.                 sum *= 0.85;
  35.             }
  36.             else
  37.             {
  38.                 sum *= 0.75;
  39.             }
  40.                                
  41.             if (people % 2 == 0 && season != "Autumn")
  42.             {
  43.                 sum *= 0.95;
  44.             }
  45.  
  46.             if (budget >= sum)
  47.             {
  48.                 Console.WriteLine($"Yes! You have {budget - sum:F2} leva left.");
  49.             }
  50.             else
  51.             {
  52.                 Console.WriteLine($"Not enough money! You need {sum - budget:F2} leva.");
  53.             }
  54.         }
  55.     }
  56. }
  57.  
Add Comment
Please, Sign In to add comment