Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace GodzillaVsKong
- {
- class Program
- {
- static void Main(string[] args)
- {
- double budget = double.Parse(Console.ReadLine());
- int statists = int.Parse(Console.ReadLine());
- double dresses = double.Parse(Console.ReadLine());
- double decors = budget / 10;
- if (statists > 150)
- {
- dresses *= 0.9;
- }
- budget -= decors + statists * dresses;
- if (budget >= 0)
- {
- Console.WriteLine("Action!");
- Console.WriteLine($"Wingard starts filming with {budget:F2} leva left.");
- }
- else
- {
- Console.WriteLine("Not enough money!");
- Console.WriteLine($"Wingard needs {Math.Abs(budget):F2} leva more.");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement