Advertisement
elena1234

ComputerStore

Oct 12th, 2020 (edited)
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.29 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ComputerStore
  4. {
  5.     class MainClass
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             string command = Console.ReadLine();
  10.             double totalPricesWithoutTaxes = 0;
  11.             double totalTaxes = 0;
  12.             double totalPricesWithTaxes = 0;
  13.             while (command!= "special" && command!="regular")
  14.             {
  15.                 double priceWithoutTax = double.Parse(command);
  16.                 if (priceWithoutTax <= 0)
  17.                 {
  18.                     Console.WriteLine($"Invalid price!");
  19.                     command = Console.ReadLine();
  20.                     continue;
  21.                 }
  22.          
  23.                 totalTaxes += 0.20 * priceWithoutTax;
  24.                 totalPricesWithoutTaxes += priceWithoutTax;
  25.                 command = Console.ReadLine();
  26.             }
  27.  
  28.             if (command == "special")
  29.             {
  30.                 totalPricesWithTaxes = (totalPricesWithoutTaxes + totalTaxes) - 0.1 * (totalPricesWithoutTaxes + totalTaxes);
  31.                 if (totalPricesWithTaxes == 0)
  32.                 {
  33.                     Console.WriteLine("Invalid order!");
  34.                     return;
  35.                 }
  36.  
  37.                 Console.WriteLine($"Congratulations you've just bought a new computer!");
  38.                 Console.WriteLine($"Price without taxes: {totalPricesWithoutTaxes:f2}$");
  39.                 Console.WriteLine($"Taxes: {totalTaxes:f2}$");
  40.                 Console.WriteLine("-----------");
  41.                 Console.WriteLine($"Total price: {totalPricesWithTaxes:f2}$");
  42.             }
  43.  
  44.             else if (command == "regular")
  45.             {
  46.                 totalPricesWithTaxes = (totalPricesWithoutTaxes + totalTaxes);
  47.                 if (totalPricesWithTaxes == 0)
  48.                 {
  49.                     Console.WriteLine("Invalid order!");
  50.                     return;
  51.                 }
  52.  
  53.                 Console.WriteLine($"Congratulations you've just bought a new computer!");
  54.                 Console.WriteLine($"Price without taxes: {totalPricesWithoutTaxes:f2}$");
  55.                 Console.WriteLine($"Taxes: {totalTaxes:f2}$");
  56.                 Console.WriteLine("-----------");
  57.                 Console.WriteLine($"Total price: {totalPricesWithTaxes:f2}$");
  58.             }
  59.  
  60.         }
  61.     }
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement