Spocoman

08. Fuel Tank - Part 2

Nov 16th, 2021 (edited)
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.34 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.                 if (fuel == "Gas")
  17.                 {
  18.                     sum = 0.93;
  19.                 }
  20.                 else if (fuel == "Gasoline")
  21.                 {
  22.                     sum = 2.22;
  23.                 }
  24.                 else if (fuel == "Diesel")
  25.                 {
  26.                     sum = 2.33;
  27.                 }
  28.             }
  29.  
  30.             else
  31.             {
  32.                 if (fuel == "Gas")
  33.                 {
  34.                     sum = 0.85;
  35.                 }
  36.                 else if (fuel == "Gasoline")
  37.                 {
  38.                     sum = 2.04;
  39.                 }
  40.                 else if (fuel == "Diesel")
  41.                 {
  42.                     sum = 2.21;
  43.                 }
  44.             }
  45.  
  46.             if (liter >= 20 && liter <= 25)
  47.             {
  48.                 sum *= 0.92;
  49.             }
  50.             else if (liter > 25)
  51.             {
  52.                 sum *= 0.9;
  53.             }
  54.  
  55.             Console.WriteLine($"{sum * liter:F2} lv.");
  56.         }
  57.     }
  58. }
Add Comment
Please, Sign In to add comment