Advertisement
Spocoman

01. Computer Store

Nov 4th, 2023 (edited)
827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.20 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ComputerStore
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double totalPrice = 0, price;
  10.  
  11.             string command = Console.ReadLine();
  12.  
  13.             while (command != "special" && command != "regular")
  14.             {
  15.                 price = double.Parse(command);
  16.  
  17.                 if (price > 0)
  18.                 {
  19.                     totalPrice += price;
  20.                 }
  21.                 else
  22.                 {
  23.                     Console.WriteLine("Invalid price!");
  24.                 }
  25.                 command = Console.ReadLine();
  26.             }
  27.  
  28.             if (totalPrice == 0)
  29.             {
  30.                 Console.WriteLine("Invalid order!");
  31.             }
  32.             else
  33.             {
  34.                 Console.WriteLine(
  35.                     $"Congratulations you've just bought a new computer!\n" +
  36.                     $"Price without taxes: {totalPrice:f2}$\n" +
  37.                     $"Taxes: {totalPrice / 5:f2}$\n" +
  38.                     $"-----------\n" +
  39.                     $"Total price: {totalPrice * 1.2 * (command == "special" ? 0.9 : 1):f2}$"
  40.                     );
  41.             }
  42.         }
  43.     }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement