Spocoman

01. Cinema

Nov 17th, 2021 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.73 KB | None | 0 0
  1. using System;
  2.  
  3. namespace CinemaTicket
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             string projection = Console.ReadLine();
  10.             int rows = int.Parse(Console.ReadLine());
  11.             int columns = int.Parse(Console.ReadLine());
  12.            
  13.             if (projection == "Premiere")
  14.             {
  15.                 Console.WriteLine($"{rows * columns * 12:F2} leva");
  16.             }
  17.             else if (projection == "Normal")
  18.             {
  19.                 Console.WriteLine($"{rows * columns * 7.5:F2} leva");
  20.             }
  21.             else if (projection == "Discount")
  22.             {
  23.                 Console.WriteLine($"{rows * columns * 5:F2} leva");
  24.             }
  25.         }
  26.     }
  27. }
Add Comment
Please, Sign In to add comment