Advertisement
Spocoman

PaintingEggs

Nov 28th, 2021
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.77 KB | None | 0 0
  1. using System;
  2.  
  3. namespace PaintingEggs
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string size = Console.ReadLine();
  10.             string color = Console.ReadLine();
  11.             int volume = int.Parse(Console.ReadLine());
  12.             double sum = 0;
  13.  
  14.             switch (size)
  15.             {
  16.                 case "Large":
  17.                     if (color == "Red")
  18.                     {
  19.                         sum += 16;
  20.                     }
  21.                     else if (color == "Green")
  22.                     {
  23.                         sum += 12;
  24.                     }
  25.                     else if (color == "Yellow")
  26.                     {
  27.                         sum += 9;
  28.                     }
  29.                     break;
  30.  
  31.                 case "Medium":
  32.                     if (color == "Red")
  33.                     {
  34.                         sum += 13;
  35.                     }
  36.                     else if (color == "Green")
  37.                     {
  38.                         sum += 9;
  39.                     }
  40.                     else if (color == "Yellow")
  41.                     {
  42.                         sum += 7;
  43.                     }
  44.                     break;
  45.  
  46.                 case "Small":
  47.                     if (color == "Red")
  48.                     {
  49.                         sum += 9;
  50.                     }
  51.                     else if (color == "Green")
  52.                     {
  53.                         sum += 8;
  54.                     }
  55.                     else if (color == "Yellow")
  56.                     {
  57.                         sum += 5;
  58.                     }
  59.                     break;
  60.             }
  61.             double total = sum * volume * 0.65;
  62.             Console.WriteLine($"{total:F2} leva.");
  63.         }
  64.     }
  65. }
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement