Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace MyApp // Note: actual namespace depends on the project name.
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- // входове
- double ExcursionPrice = double.Parse(Console.ReadLine());
- int NumberPuzzles = int.Parse(Console.ReadLine());
- int NumberTalkingDols = int.Parse(Console.ReadLine());
- int NumberTeddyBears = int.Parse(Console.ReadLine());
- int NumberMinions = int.Parse(Console.ReadLine());
- int NumberTrucks = int.Parse(Console.ReadLine());
- //пресмятане цената на всички играчки
- double PricePuzzles = NumberPuzzles * 2.6;
- int PriceTalkingDols = NumberTalkingDols * 3;
- double PriceTeddyBears = NumberTeddyBears * 4.10;
- double PriceMinions = NumberMinions * 8.20;
- int PriceTrucks = NumberTrucks * 2;
- double income = PricePuzzles + PriceTalkingDols + PriceTeddyBears + PriceMinions + PriceTrucks;
- // сумиране броя на играчките за намалението от 25% при повече от 50 бр.
- int AllToys = NumberPuzzles + NumberTalkingDols + NumberTeddyBears + NumberMinions + NumberTrucks;
- // проверка за дискаунд
- if (AllToys >= 50)
- {
- double DiscoundPrice = income * 0.25;
- // изваждане на дискаунда от цената
- income = income - DiscoundPrice;
- }
- // приспадане на 10 % от крайната сума за наема
- double ShopRent = income * 0.1;
- // създаване на променлива за крайната сума и проверка дали е достатъчна за екскурзията
- double TotalCash = income - ShopRent;
- if (TotalCash >= ExcursionPrice)
- {
- double LeftMoney = TotalCash - ExcursionPrice;
- Console.WriteLine($"Yes! {LeftMoney:f2} lv left.");
- }
- else
- {
- double NeadMoney = ExcursionPrice - TotalCash;
- Console.WriteLine($"Not enough money! {NeadMoney:f2} lv needed.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement