public static void Main()
Console.WriteLine("Days of the week!");
Console.WriteLine("Write a number from 1 to 7 and I'll tel you what day of the week it represents");
dayoftheweek = int.Parse(Console.ReadLine());
Console.WriteLine("Your number represents monday");
Console.WriteLine("Your number represents tuesday");
Console.WriteLine("Your number represents wednesday");
Console.WriteLine("Your number represents thursday");
Console.WriteLine("Your number represents friday");
Console.WriteLine("Your number represents saturday");
Console.WriteLine("Your number represents sunday");
Console.WriteLine("Your number is out of range");