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.
- 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 is in the two images attached.
- Code should be written in this type of format:
#include using namespace std;int main() {/* Type your code here. */return 0;}Extracted text: --January--- Sun Mon Tue Wed Thu Fri Sat 2 3 4 7 8. 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 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 2 3 4 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 2 3 4 6 7 8. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30Extracted text: --Мау---. Sun Mon Tue Wed Thu Fri Sat 1 2 3 4 6. 7 8. 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 June-- 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 --July--- 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 31 --August-- Sun Mon Tue Wed Thu Fri Sat 1 2 3 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
int main() {
/* Type your code here. */
return 0;}
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here