Advertisement
Spocoman

Car To Go

Dec 11th, 2021
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.25 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CarToGo
  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 car = "Jeep";
  12.             string classes = "Luxury class";
  13.  
  14.             if (budget > 500)
  15.             {
  16.                 budget *= 0.9;
  17.             }
  18.             else if (budget > 100 && budget <= 500)
  19.             {
  20.                 if (season == "Summer")
  21.                 {
  22.                     car = "Cabrio";
  23.                     budget *= 0.45;
  24.                 }
  25.                 else
  26.                 {
  27.                     budget *= 0.8;
  28.                 }
  29.                 classes = "Compact class";
  30.             }
  31.             else if (budget > 0 && budget <= 100)
  32.             {
  33.                 if (season == "Summer")
  34.                 {
  35.                     car = "Cabrio";
  36.                     budget *= 0.35;
  37.                 }
  38.                 else
  39.                 {
  40.                     budget *= 0.65;
  41.                 }
  42.                 classes = "Economy class";
  43.             }  
  44.             Console.WriteLine(classes);
  45.             Console.WriteLine($"{ car} - { budget:f2}");
  46.         }
  47.     }
  48. }
  49.  
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement