Advertisement
Spocoman

Cinema

Nov 24th, 2021 (edited)
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.05 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Cinema
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int seats = int.Parse(Console.ReadLine());
  10.             string commands = Console.ReadLine();
  11.             int totalSum = 0;
  12.  
  13.             while (commands != "Movie time!")
  14.             {
  15.                 int people = int.Parse(commands);
  16.                 if (people > seats)
  17.                 {
  18.                     break;
  19.                 }
  20.                 seats -= people;
  21.                 totalSum += people * 5;
  22.  
  23.                 if (people % 3 == 0)
  24.                 {
  25.                     totalSum -= 5;
  26.                 }
  27.                 commands = Console.ReadLine();
  28.             }
  29.  
  30.             if (commands == "Movie time!")
  31.             {
  32.                 Console.WriteLine($"There are {seats} seats left in the cinema.");
  33.             }
  34.             else
  35.             {
  36.                 Console.WriteLine("The cinema is full.");
  37.             }
  38.             Console.WriteLine($"Cinema income - {totalSum} lv.");
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement