Advertisement
marto9119

Untitled

Jan 9th, 2023
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.43 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace MyApp // Note: actual namespace depends on the project name.
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             // входове
  10.            
  11.             double ExcursionPrice = double.Parse(Console.ReadLine());
  12.             int NumberPuzzles = int.Parse(Console.ReadLine());
  13.             int NumberTalkingDols = int.Parse(Console.ReadLine());
  14.             int NumberTeddyBears = int.Parse(Console.ReadLine());
  15.             int NumberMinions = int.Parse(Console.ReadLine());
  16.             int NumberTrucks = int.Parse(Console.ReadLine());
  17.  
  18.             //пресмятане цената на всички играчки
  19.            
  20.             double PricePuzzles = NumberPuzzles * 2.6;
  21.             int PriceTalkingDols = NumberTalkingDols * 3;
  22.             double PriceTeddyBears = NumberTeddyBears * 4.10;
  23.             double PriceMinions = NumberMinions * 8.20;
  24.             int PriceTrucks = NumberTrucks * 2;
  25.  
  26.             double income = PricePuzzles + PriceTalkingDols + PriceTeddyBears + PriceMinions + PriceTrucks;
  27.  
  28.             // сумиране броя на играчките за намалението от 25% при повече от 50 бр.
  29.  
  30.             int AllToys = NumberPuzzles + NumberTalkingDols + NumberTeddyBears + NumberMinions + NumberTrucks;
  31.  
  32.             // проверка за дискаунд
  33.  
  34.             if (AllToys >= 50)
  35.             {
  36.                 double DiscoundPrice = income * 0.25;
  37.  
  38.                 // изваждане на дискаунда от цената
  39.  
  40.                 income = income - DiscoundPrice;
  41.             }
  42.             // приспадане на 10 % от крайната сума за наема
  43.  
  44.             double ShopRent = income * 0.1;
  45.  
  46.             // създаване на променлива за крайната сума и проверка дали е достатъчна за екскурзията
  47.  
  48.             double TotalCash = income - ShopRent;
  49.  
  50.             if (TotalCash >= ExcursionPrice)
  51.             {
  52.                 double LeftMoney = TotalCash - ExcursionPrice;
  53.  
  54.                 Console.WriteLine($"Yes! {LeftMoney:f2} lv left.");
  55.             }
  56.             else
  57.             {
  58.                 double NeadMoney = ExcursionPrice - TotalCash;
  59.                 Console.WriteLine($"Not enough money! {NeadMoney:f2} lv needed.");
  60.             }
  61.            
  62.         }
  63.     }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement