public static void Main()
Console.WriteLine("Welcome to aquinas multiplex \r\nWe are currently showing:\r\n1. Rush(15) tickets sold: " + rushsold + "\r\n2. How i live now(15) tickets sold: " + livenowsold + "\r\n3. Thor: the dark world(12) tickets sold: " + thorsold + "\r\n4. Filth(18) tickets sold: " + filthsold + "\r\n5. Planes(U) tickets sold: " + planessold);
Console.Write("enter the number of the film you would like to watch: ");
int filmnumber = int.Parse(Console.ReadLine());
livenowsold = livenowsold + 1;
filthsold = filthsold + 1;
planessold = planessold + 1;
string filmname = string.Empty;
filmname = "How i live now";
filmname = "Thor: the dark world";
Console.Write("enter your age: ");
int age = int.Parse(Console.ReadLine());
if (filmnumber > 5 && filmnumber < 1)
Console.WriteLine("This is not a valid film");
Console.WriteLine("You are not old enough to watch this film");
Console.WriteLine("You are not old enough to watch this film");
Console.WriteLine("You are not old enough to watch this film");
Console.WriteLine("You are not old enough to watch this film");
Console.WriteLine("You are not old enough to watch this film");
Console.Write("what date would you like to book for: ");
DateTime bookday = DateTime.Parse(Console.ReadLine());
if (bookday > DateTime.Today.AddDays(7) || bookday < DateTime.Today)
Console.WriteLine("this is not a valid date");
Console.WriteLine("------------------------------ \r\nAquinas Multiplex \r\nFilm: " + filmname + "\r\nDate of booking: " + bookday.ToString("MM/dd/yy") + "\r\n \r\nEnjoy your film! \r\n------------------------------");
Console.Write("would you like to book another ticket? y/n \r\n");
bookagain = Console.ReadLine();