Write a c++ program to display a calendar for a given year. Type of Branches such as switch statements, if-else, and etc. should be used as well.
You can't define functions or use Void. Everything should be written inside int main().
Code should be written in this type of format:
#include using namespace std;int main() {/* Type your code here. */return 0;}Ask a user to enter the year and the new year's day of the year entered:cout <"enter a="" calendar="" year="" to="">"enter>cout <" what="" is="" the="" new="" year's="">">a leap year is:IF year%4 = 0 AND year%100 != 0 OR year%400 = 0An example of what the program should display as a result is in the two images attached.Extracted text: --April-- Sun Mon Tue Wed Thu Fri Sat 1 2 4 6. 7 8 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 --May-- Sun Mon Tue Wed Thu Fri Sat 1 2 4 5 6 7 8. 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 -----J une- Sun Mon Tue Wed Thu Fri Sat 1 4 6 7 8. 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 --July--- Sun Mon Tue Wed Thu Fri Sat 1 2 3 4 6. 7 8 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31Extracted text: -January- Sun Mon Tue Wed Thu Fri Sat 1 3 4 6. 7 8. 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 --February-- --- Sun Mon Tue Wed Thu Fri Sat 1 2 3 4 6. 7 8. 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 ----March- Sun Mon Tue Wed Thu Fri Sat 1 4 6. 7 8. 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 ---April-- Sun Mon Tue Wed Thu Fri Sat 1 3 4 6. 7 8 9. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 LO
int main() {
/* Type your code here. */
return 0;}
Ask a user to enter the year and the new year's day of the year entered:
cout <"enter a="" calendar="" year="" to="">"enter>
cout <" what="" is="" the="" new="" year's="">">
a leap year is:
IF year%4 = 0 AND year%100 != 0 OR year%400 = 0
An example of what the program should display as a result is in the two images attached.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here