dragonbs

New House

Sep 25th, 2022
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.07 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _03.NewHouse
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string flowersS = Console.ReadLine();
  10.             int countOfFlowersS = int.Parse(Console.ReadLine());
  11.             int budgetT = int.Parse(Console.ReadLine());
  12.  
  13.             double price = 0;
  14.  
  15.             //"Roses", "Dahlias", "Tulips", "Narcissus", "Gladiolus"
  16.             switch (flowersS)
  17.             {
  18.                 case "Roses":
  19.                     price = 5;
  20.                     break;
  21.                 case "Dahlias":
  22.                     price = 3.80;
  23.                     break;
  24.                 case "Tulips":
  25.                     price = 2.80;
  26.                     break;
  27.                 case "Narcissus":
  28.                     price = 3;
  29.                     break;
  30.                 case "Gladiolus":
  31.                     price = 2.50;
  32.                     break;
  33.             }
  34.  
  35.             double finalPrice = countOfFlowersS * price;
  36.  
  37.             if (flowersS == "Roses" && countOfFlowersS > 80)
  38.             {
  39.                 finalPrice *= 0.9;
  40.             }
  41.             else if (flowersS == "Dahlias" && countOfFlowersS > 90)
  42.             {
  43.                 finalPrice *= 0.85;
  44.             }
  45.             else if (flowersS == "Tulips" && countOfFlowersS > 80)
  46.             {
  47.                 finalPrice *= 0.85;
  48.             }
  49.             else if (flowersS == "Narcissus" && countOfFlowersS < 120)
  50.             {
  51.                 finalPrice *= 1.15;
  52.             }
  53.             else if (flowersS == "Gladiolus" && countOfFlowersS < 80)
  54.             {
  55.                 finalPrice *= 1.2;
  56.             }
  57.  
  58.             double difference = Math.Abs(finalPrice - budgetT);
  59.  
  60.             if (budgetT >= finalPrice)
  61.             {
  62.                 Console.WriteLine($"Hey, you have a great garden with {countOfFlowersS} {flowersS} and {difference:F2} leva left.");
  63.             }
  64.             else
  65.             {
  66.                 Console.WriteLine($"Not enough money, you need {difference:F2} leva more.");
  67.             }
  68.         }
  69.     }
  70. }
Add Comment
Please, Sign In to add comment