Advertisement
KeepCoding

TransportPrice

Jan 19th, 2018
1,186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.07 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace TransportPrice
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.             int distance = int.Parse(Console.ReadLine());
  14.             String timeOfDay = Console.ReadLine();
  15.             if (distance >= 100)
  16.             {
  17.                 double price = distance * 0.06;
  18.                 Console.WriteLine("{0:F2}", price);
  19.             }
  20.             else if (distance >= 20)
  21.             {
  22.                 double price = distance * 0.09;
  23.                 Console.WriteLine("{0:F2}", price);
  24.             }
  25.             else
  26.             {
  27.                 double price = 0.70;
  28.                 if (timeOfDay == "day")
  29.                 {
  30.                     price += distance * 0.79;
  31.                 }
  32.                 else if (timeOfDay == "night")
  33.                 {
  34.                     price += distance * 0.90;
  35.                 }
  36.                 Console.WriteLine("{0:F2}", price);
  37.             }
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement