Spocoman

07. Theatre Promotion(with ternary operator)

Jan 10th, 2022 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.82 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TheatrePromotions
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             string day = Console.ReadLine();
  10.             int age = int.Parse(Console.ReadLine());
  11.             int sum = 0;
  12.  
  13.             if (age >= 0 && age < 123)
  14.             {
  15.                 if (day == "Weekday")
  16.                 {
  17.                     sum = age > 18 && age <= 64 ? 18 : 12;
  18.                 }
  19.                 else if (day == "Weekend")
  20.                 {
  21.                     sum = age > 18 && age <= 64 ? 20 : 15;
  22.                 }
  23.                 else if (day == "Holiday")
  24.                 {
  25.                     sum = age <= 18 ? 5 : age > 64 ? 10 : 12;
  26.                 }
  27.             }
  28.             Console.WriteLine(sum == 0 ? "Error!" : $"{ sum}$");
  29.         }
  30.     }
  31. }
Add Comment
Please, Sign In to add comment