Spocoman

08. Fuel Tank - Part 2 (switch)

Nov 16th, 2021 (edited)
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.45 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FuelTank2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string fuel = Console.ReadLine();
  10.             double liter = double.Parse(Console.ReadLine());
  11.             string cart = Console.ReadLine();
  12.             double sum = 0;
  13.            
  14.             if (cart == "No")
  15.             {
  16.                 switch (fuel)
  17.                 {
  18.                     case "Gas":
  19.                         sum = 0.93;
  20.                         break;
  21.                     case "Gasoline":
  22.                         sum = 2.22;
  23.                         break;
  24.                     case "Diesel":
  25.                         sum = 2.33;
  26.                         break;
  27.                 }
  28.             }
  29.             else
  30.             {
  31.                 switch (fuel)
  32.                 {
  33.  
  34.                     case "Gas":
  35.                         sum = 0.85;
  36.                         break;
  37.                     case "Gasoline":
  38.                         sum = 2.04;
  39.                         break;
  40.                     case "Diesel":
  41.                         sum = 2.21;
  42.                         break;
  43.                 }
  44.             }
  45.             if (liter >= 20 && liter <= 25)
  46.             {
  47.                 sum = 0.92 * sum;
  48.             }
  49.             else if (liter > 25)
  50.             {
  51.                 sum = 0.9 * sum;
  52.             }
  53.  
  54.             Console.WriteLine($"{sum * liter:F2} lv.");
  55.         }
  56.     }
  57. }
Add Comment
Please, Sign In to add comment