Advertisement
marto9119

Untitled

Jan 9th, 2023
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.78 KB | Source Code | 0 0
  1. using System;
  2. using System.Diagnostics;
  3.  
  4. namespace MyApp // Note: actual namespace depends on the project name.
  5. {
  6.     internal class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             //• Puzzle - BGN 2.60.
  11.             //• Talking doll -BGN 3
  12.             //• Teddy bear -BGN 4.10.
  13.             //• Mignon - BGN 8.20.
  14.             //• Truck - BGN 2
  15.             //PriceOfTheExcursion
  16.  
  17.             Double PriceOfTheExcursion =double.Parse(Console.ReadLine());
  18.             int Puzzle = int.Parse(Console.ReadLine());
  19.             int TalkingDoll = int.Parse(Console.ReadLine());    
  20.             int TeddyBear = int.Parse(Console.ReadLine());
  21.             int Mignon = int.Parse(Console.ReadLine());
  22.             int Truck = int.Parse(Console.ReadLine());
  23.             double toyPrice =
  24.                 (Puzzle * 2.60) +
  25.                 (TalkingDoll * 3) +
  26.                 (TeddyBear * 4.10) +
  27.                 (Mignon * 8.20) +
  28.                 (Truck * 2);
  29.             int allToy = Puzzle + TalkingDoll + TeddyBear + Mignon + Truck;
  30.             double incom = 0.0;
  31.             double remainder = 0.0;
  32.             if (allToy > 49)
  33.             {
  34.                 incom = toyPrice * 0.75;
  35.             }
  36.             else
  37.             {
  38.                 incom = toyPrice;
  39.             }
  40.             double totalCash = incom * 0.9;
  41.             if (totalCash > PriceOfTheExcursion)
  42.             {
  43.                 remainder = totalCash - PriceOfTheExcursion;
  44.                 Console.WriteLine($"Yes! {remainder:f2} lv left.");
  45.             }
  46.             else
  47.             {
  48.                 remainder = PriceOfTheExcursion- totalCash;
  49.                 Console.WriteLine($"Not enough money! {remainder :f2} lv needed.");
  50.             }
  51.  
  52.            
  53.         }
  54.     }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement