Question: Part1. Write a program that reads an integer value from the user representing a year. The purpose of the program is to determine if the

Part1. Write a program that reads an integer value from the user representing a year. The purpose of the program is to determine if the year is a leap year (has 29 days in February) in the Gregorian calendar. A year is a leap year if it is divisible by 4, unless it is also divisible by 100 but not 400. For example, the year 2003 is not a leap year, but 2004 is. The year 1900 is not a leap year because it is divisible by 100 but not 400. The year 2000 is a leap year because it is divisible by 100 and is also divisible by 400. Produce an error message if the input value is less than 1582 (the year the Gregorian calendar was adopted). Run the test part1 before starting.

run part one before part 2.

Part2. Modify the code of part1 so that user can evaluate multiple years. Allow the user to terminate the program using a sentinel value. Validate each input value to make sure it is greater than or equal to 1582..

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!