Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a C++ program that prints a calendar for a given year. You can use the program ex74.cpp as the starting point. The program prompts
Write a C++ program that prints a calendar for a given year. You can use the program ex74.cpp as the starting point. The program prompts the user for three inputs I) The year for which you are generating the calendar. 2) The day of the week that Januaryfirst is on, you wil use the following notation to set the day of the week O Sunday 4 Thursday l Monday 5 Friday 2 Tuesday 6 Saturday 3 Wednesday 3) The output file name Your program should generate a calendar similar to the one shown in the example output below. The calendar should be printed into the output file. Your program should be able to handle leap years. A leap year is a year in which we have 366 days. That extra day comes at the end of February. Thus, a leap year has 366 days with 29 days in February. A century year is a leap year if it is divisible by 400. Other years divisible by 4 but not by 100 are also leap years. Example: Year 2000 is a leap year because it is de table by 400. Year 2004 is a leap year because s dws sable by 4 but not by 100 You can use as many functions as you wish. Your program should clearly describe the functionality of each functon and should display the instructions on how to run the program
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started