Advertisement
Spocoman

Coffee Machine

Nov 24th, 2021
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.19 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CoffeeMachine
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string coffee = Console.ReadLine();
  10.             string sugar = Console.ReadLine();
  11.             int volume = int.Parse(Console.ReadLine());
  12.             double sum = 0;
  13.  
  14.             switch (coffee)
  15.             {
  16.                 case "Espresso":
  17.                    
  18.                     if (sugar == "Without")
  19.                     {
  20.                         sum = volume * 0.9;
  21.                         sum *= 0.65;
  22.                     }
  23.                     else if (sugar == "Normal")
  24.                     {
  25.                         sum = volume;
  26.                     }
  27.                     else if (sugar == "Extra")
  28.                     {
  29.                         sum = volume * 1.2;
  30.                     }
  31.                     if (volume > 5)
  32.                     {
  33.                         sum *= 0.75;
  34.                     }
  35.                     break;
  36.                 case "Cappuccino":
  37.  
  38.                     if (sugar == "Without")
  39.                     {
  40.                         sum = volume;
  41.                         sum *= 0.65;
  42.                     }
  43.                     else if (sugar == "Normal")
  44.                     {
  45.                         sum = volume * 1.2;
  46.                     }
  47.                     else if (sugar == "Extra")
  48.                     {
  49.                         sum = volume * 1.6;
  50.                     }
  51.                     break;
  52.  
  53.                 case "Tea":
  54.  
  55.                     if (sugar == "Without")
  56.                     {
  57.                         sum = volume * 0.5;
  58.                         sum *= 0.65;
  59.                     }
  60.                     else if (sugar == "Normal")
  61.                     {
  62.                         sum = volume * 0.6;
  63.                     }
  64.                     else if (sugar == "Extra")
  65.                     {
  66.                         sum = volume * 0.7;
  67.                     }
  68.                     break;
  69.             }
  70.             if (sum > 15)
  71.             {
  72.                 sum *= 0.8;
  73.             }
  74.  
  75.             Console.WriteLine($"You bought {volume} cups of {coffee} for {sum:F2} lv.");
  76.         }
  77.     }
  78. }
  79.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement