Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Theatre_Promotions
- {
- class Program
- {
- static void Main(string[] args)
- {
- string typeOfDay = Console.ReadLine().ToLower();
- int age = int.Parse(Console.ReadLine());
- int price = 0;
- if (typeOfDay == "weekday")
- {
- if ((age >= 0 && age <= 18) || (age > 64 && age <= 122))
- {
- price = 12;
- }
- else if (age > 18 && age <= 64)
- {
- price = 18;
- }
- }
- if (typeOfDay == "weekend")
- {
- if ((age >= 0 && age <= 18) || (age > 18 && age <= 64) || (age > 64 && age <= 122))
- {
- price = 15;
- }
- else if (age > 18 && age <= 64)
- {
- price = 20;
- }
- }
- if (typeOfDay == "holiday")
- {
- if (age >= 0 && age <= 18)
- {
- price = 5;
- }
- else if (age > 18 && age <= 64)
- {
- price = 12;
- }
- else if (age > 64 && age <= 122)
- {
- price = 10;
- }
- }
- if (price != 0)
- {
- Console.WriteLine(price);
- }
- else
- {
- Console.WriteLine("Error");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement