Spocoman

Movie Stars

Nov 24th, 2021 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.06 KB | None | 0 0
  1. using System;
  2.  
  3. namespace MovieStars
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double budget = double.Parse(Console.ReadLine());
  10.  
  11.             while (true)
  12.             {    
  13.                 string actor = Console.ReadLine();
  14.                 if (actor == "ACTION")
  15.                 {
  16.                     break;
  17.                 }
  18.                 if (actor.Length <= 15)
  19.                 {
  20.                     double salary = double.Parse(Console.ReadLine());
  21.                     budget -= salary;
  22.                 }
  23.                 else
  24.                 {
  25.                     budget *= 0.8;
  26.                 }
  27.                 if (budget < 0)
  28.                 {
  29.                     break;
  30.                 }
  31.             }
  32.  
  33.             if (budget < 0)
  34.             {
  35.                 Console.WriteLine($"We need {Math.Abs(budget):F2} leva for our actors.");
  36.             }
  37.             else
  38.             {
  39.                 Console.WriteLine($"We are left with {budget:F2} leva.");
  40.             }
  41.         }
  42.     }
  43. }
Add Comment
Please, Sign In to add comment