Spocoman

Club

Nov 24th, 2021 (edited)
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.00 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Club
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double neededSum = double.Parse(Console.ReadLine());
  10.             string drink = Console.ReadLine();
  11.             double profit = 0;
  12.             while (drink != "Party!" && profit < neededSum)
  13.             {
  14.                 int volume = int.Parse(Console.ReadLine());
  15.                 double sum = drink.Length * volume;
  16.                 if (sum % 2 == 1)
  17.                 {
  18.                     sum *= 0.75;
  19.                 }
  20.                 profit += sum;
  21.                
  22.                 drink = Console.ReadLine();              
  23.             }
  24.  
  25.             if (neededSum > profit)
  26.             {
  27.                 Console.WriteLine($"We need {neededSum - profit:F2} leva more.");
  28.             }
  29.             else
  30.             {
  31.                 Console.WriteLine("Target acquired.");    
  32.             }
  33.             Console.WriteLine($"Club income - {profit:F2} leva.");
  34.         }
  35.     }
  36. }
Add Comment
Please, Sign In to add comment