Spocoman

04. Toy Shop

Nov 16th, 2021 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.25 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ToyShop
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             double amount = double.Parse(Console.ReadLine());
  10.             int puzzles = int.Parse(Console.ReadLine());
  11.             int dolls = int.Parse(Console.ReadLine());
  12.             int bears = int.Parse(Console.ReadLine());
  13.             int minions = int.Parse(Console.ReadLine());
  14.             int trucks = int.Parse(Console.ReadLine());
  15.  
  16.             double puzzlePrice = puzzles * 2.6;
  17.             double dollsPrice =  dolls * 3;
  18.             double bearsPrice = bears * 4.1;
  19.             double minionsPrice = minions * 8.2;
  20.             double trucksPrice =  trucks * 2;
  21.             int toys = puzzles + dolls + bears + minions + trucks;
  22.             double price = puzzlePrice + dollsPrice + bearsPrice + minionsPrice + trucksPrice;
  23.            
  24.             if (toys >= 50)
  25.             {
  26.                 price *= 0.75;
  27.             }
  28.  
  29.             price *= 0.9;
  30.  
  31.             if (price >= amount)
  32.             {
  33.                 Console.WriteLine($"Yes! {price - amount:f2} lv left.");
  34.             }
  35.             else
  36.             {
  37.                 Console.WriteLine($"Not enough money! {amount - price:f2} lv needed.");
  38.             }
  39.         }
  40.     }
  41. }
Add Comment
Please, Sign In to add comment