enum DayOfWeek { MON, TUE, WED, THU, FRI, SAT, SUN }; //the function outputs the names of the days static void PrintDayOfWeek(DayOfWeek dow) { //TODO: here you have to create SWITCH statement to check the day //the hint: if the name of the day is MON, so to Print "Monday", etc. } //the function inputs the days of week (from 1 to 7) and returns the result of calling the function DayOfWeek with inputted argument static DayOfWeek ReadDayOfWeek() { int day; day = int.Parse(Console.ReadLine()); if ( /*TODO: print the condition when an exception occurs*/ ) throw new ArgumentOutOfRangeException("day", "day must be > 0 and <8; day=" + day.ToString()); return /*TODO: here it is needed to make a conversion of the type*/ day; } static void Main() { DayOfWeek dow /*TODO: with a help of the function ReadDayOfWeek you have to initialize dow*/ //TODO: call the function PrintDayOfWeek }