Advertisement
Spocoman

Courier Express

Dec 11th, 2021 (edited)
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.86 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CourierFirm
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double weight = double.Parse(Console.ReadLine());
  10.             string service = Console.ReadLine();
  11.             double distance = double.Parse(Console.ReadLine());
  12.  
  13.             double kmPrice = 0;
  14.  
  15.             if (weight < 1)
  16.             {
  17.                 kmPrice = 0.03;
  18.             }
  19.             else if (weight >= 1 && weight < 10)
  20.             {
  21.                 kmPrice = 0.05;
  22.             }
  23.             else if (weight >= 10 && weight < 40)
  24.             {
  25.                 kmPrice = 0.1;
  26.             }
  27.             else if (weight >= 40 && weight < 90)
  28.             {
  29.                 kmPrice = 0.15;
  30.             }
  31.             else if (weight >= 90 && weight < 150)
  32.             {
  33.                 kmPrice = 0.2;
  34.             }
  35.             double express = 0;
  36.             if (service == "express")
  37.             {
  38.                 if (weight < 1)
  39.                 {
  40.                     express = kmPrice / 100 * 80;
  41.                 }
  42.                 else if (weight >= 1 && weight < 10)
  43.                 {
  44.                     express = kmPrice / 100 * 40;
  45.                 }
  46.                 else if (weight >= 10 && weight < 40)
  47.                 {
  48.                     express = kmPrice / 100 * 5;
  49.                 }
  50.                 else if (weight >= 40 && weight < 90)
  51.                 {
  52.                     express = kmPrice / 100 * 2;
  53.                 }
  54.                 else if (weight >= 90 && weight < 150)
  55.                 {
  56.                     express = kmPrice / 100 * 1;
  57.                 }
  58.             }
  59.             double total = kmPrice * distance + express * weight * distance;
  60.  
  61.             Console.WriteLine($"The delivery of your shipment with weight of {weight:f3} kg. would cost {total:f2} lv.");
  62.         }
  63.     }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement