Spocoman

08. Fuel Tank - Part 2 (ternary operator)

Nov 16th, 2021 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 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 (fuel == "Gas")
  15.             {
  16.                 sum = cart == "No" ? 0.93 : 0.85;
  17.             }
  18.             else if (fuel == "Gasoline")
  19.             {
  20.                 sum = cart == "No" ? 2.22 : 2.04;
  21.             }
  22.             else if (fuel == "Diesel")
  23.             {
  24.                 sum = cart == "No" ? 2.33 : 2.21;
  25.             }
  26.  
  27.             sum = liter > 25 ? sum *= 0.9 : liter >= 20 ? sum *= 0.92 : sum;
  28.            
  29.             Console.WriteLine($"{sum * liter:F2} lv.");
  30.         }
  31.     }
  32. }
Add Comment
Please, Sign In to add comment