Beispiel #1
0
            public static void RunOne()
            {
                //EXERCISE1:
                //1. Write a program, which reads from the console a year and checks if it is a leap year.
                int userYear = PromptYear();

                if (LeapYears.CheckLeapYear(userYear) == false)
                {
                    Console.WriteLine("{0} is not a leap year", userYear);
                }
                else
                {
                    Console.WriteLine("{0} is a leap year", userYear);
                }


                Console.WriteLine("CORRECT");
            }