Advertisement
Spocoman

Energy Booster

Nov 27th, 2021
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.03 KB | None | 0 0
  1. using System;
  2.  
  3. namespace EnergyBooster
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string fruit = Console.ReadLine();
  10.             string size = Console.ReadLine();
  11.             int volume = int.Parse(Console.ReadLine());
  12.             double sumFruit = 0;
  13.             double sumSize = 0;
  14.            
  15.             switch (fruit)
  16.             {
  17.                 case "Watermelon":
  18.                     if (size == "small")
  19.                     {
  20.                         sumFruit = 56 * 2;
  21.                     }
  22.                     else if (size == "big")
  23.                     {
  24.                         sumFruit = 28.7 * 5;
  25.                     }
  26.                     break;
  27.  
  28.                 case "Mango":
  29.                     if (size == "small")
  30.                     {
  31.                         sumFruit = 36.66 * 2;
  32.                     }
  33.                     else if (size == "big")
  34.                     {
  35.                         sumFruit = 19.6 * 5;
  36.                     }
  37.                     break;
  38.  
  39.                 case "Pineapple":
  40.                     if (size == "small")
  41.                     {
  42.                         sumFruit = 42.1 * 2;
  43.                     }
  44.                     else if (size == "big")
  45.                     {
  46.                         sumFruit = 24.8 * 5;
  47.                     }
  48.                     break;
  49.  
  50.                 case "Raspberry":
  51.                     if (size == "small")
  52.                     {
  53.                         sumFruit = 20 * 2;
  54.                     }
  55.                     else if (size == "big")
  56.                     {
  57.                         sumFruit = 15.2 * 5;
  58.                     }
  59.                     break;
  60.             }
  61.  
  62.             double total = sumFruit * volume;
  63.  
  64.             if (total >= 400 && total <= 1000)
  65.             {
  66.                 total *= 0.85;
  67.             }
  68.             else if (total > 1000)
  69.             {
  70.                 total /= 2;
  71.             }
  72.  
  73.             Console.WriteLine($"{total:F2} lv.");
  74.         }
  75.     }
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement