dragonbs

Untitled

Sep 24th, 2022
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.81 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _05.SmallShop
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string product = Console.ReadLine();
  10.             string town = Console.ReadLine();
  11.             double quantity = double.Parse(Console.ReadLine());
  12.             double totalSum = 0;
  13.  
  14.             switch (town)
  15.             {
  16.                 case "Sofia":
  17.                     switch (product)
  18.                     {
  19.                         case "coffee":
  20.                             totalSum = quantity * 0.50;
  21.                             break;
  22.                         case "water":
  23.                             totalSum = quantity * 0.80;
  24.                             break;
  25.                         case "beer":
  26.                             totalSum = quantity * 1.20;
  27.                             break;
  28.                         case "sweets":
  29.                             totalSum = quantity * 1.45;
  30.                             break;
  31.                         case "peanuts":
  32.                             totalSum = quantity * 1.60;
  33.                             break;
  34.                     }
  35.                     break;
  36.                 case "Plovdiv":
  37.                     switch (product)
  38.                     {
  39.                         case "coffee":
  40.                             totalSum = quantity * 0.40;
  41.                             break;
  42.                         case "water":
  43.                             totalSum = quantity * 0.70;
  44.                             break;
  45.                         case "beer":
  46.                             totalSum = quantity * 1.15;
  47.                             break;
  48.                         case "sweets":
  49.                             totalSum = quantity * 1.30;
  50.                             break;
  51.                         case "peanuts":
  52.                             totalSum = quantity * 1.50;
  53.                             break;
  54.                     }
  55.                     break;
  56.                 case "Varna":
  57.                     switch (product)
  58.                     {
  59.                         case "coffee":
  60.                             totalSum = quantity * 0.45;
  61.                             break;
  62.                         case "water":
  63.                             totalSum = quantity * 0.70;
  64.                             break;
  65.                         case "beer":
  66.                             totalSum = quantity * 1.10;
  67.                             break;
  68.                         case "sweets":
  69.                             totalSum = quantity * 1.35;
  70.                             break;
  71.                         case "peanuts":
  72.                             totalSum = quantity * 1.55;
  73.                             break;
  74.                     }
  75.                     break;
  76.  
  77.             }
  78.  
  79.             Console.WriteLine(totalSum);
  80.         }
  81.     }
  82. }
  83.  
Add Comment
Please, Sign In to add comment