Advertisement
Spocoman

Add Bags

Feb 16th, 2022
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.04 KB | None | 0 0
  1. using System;
  2.  
  3. namespace AddBags
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double priceOver20kg = double.Parse(Console.ReadLine());
  10.             double bagWeight = double.Parse(Console.ReadLine());
  11.             int dayBefore = int.Parse(Console.ReadLine());
  12.             int bagCount = int.Parse(Console.ReadLine());
  13.  
  14.             if (bagWeight < 10)
  15.             {
  16.                 priceOver20kg /= 5;
  17.             }
  18.             else if (bagWeight <= 20)
  19.             {
  20.                 priceOver20kg /= 2;
  21.             }
  22.  
  23.             if (dayBefore < 7)
  24.             {
  25.                 priceOver20kg *= 1.4;
  26.             }
  27.             else if (dayBefore <= 30)
  28.             {
  29.                 priceOver20kg *= 1.15;
  30.             }
  31.             else if (dayBefore > 30)
  32.             {
  33.                 priceOver20kg *= 1.1;
  34.             }
  35.            
  36.             double total = priceOver20kg * bagCount;
  37.  
  38.             Console.WriteLine($" The total price of bags is: {total:f2} lv. ");
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement