Spocoman

08. Fuel Tank

Nov 16th, 2021 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 KB | None | 0 0
  1. using System;
  2.  
  3. namespace FuelTank
  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.            
  12.  
  13.             if (fuel == "Diesel"|| fuel == "Gasoline" || fuel == "Gas")
  14.             {
  15.                 if (liter >= 25)
  16.                 {
  17.                     Console.WriteLine($"You have enough {fuel.ToLower()}.");
  18.                 }
  19.                 else
  20.                 {
  21.                     Console.WriteLine($"Fill your tank with {fuel.ToLower()}!");
  22.                 }
  23.             }
  24.             else
  25.             {
  26.                 Console.WriteLine("Invalid fuel!");
  27.             }
  28.         }
  29.     }
  30. }
Add Comment
Please, Sign In to add comment