Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

In this project, you'll extend your earlier code to support printing out a display of all the days of a given month, like this: August 2017 Su Mo Tu...

Please help with this problem and please give comments on writing it on c++, thanks.

In this project, you'll extend your earlier code to support printing out a display of all the days of a given month,like this:August 2017Su Mo Tu We Th Fr Sa1 2 3 4 56 7 8 9 10 11 1213 14 15 16 17 18 1920 21 22 23 24 25 2627 28 29 30 31Your program should prompt the user for the month (numeric) and year, and then print out the month in theformat above.You may find the field width tool of cout useful: if you call cout. width(2) and then print a number, thatnumber will take up at least two spaces, even if it is a single digit number. For examplecout < < "x";cout < 1;cout << "y";printsxlybutcout < < "x";cout. width(2); cout << 1;cout << "y";printsx lyadding an extra space before 1, to make sure that its width is at least 2. You can use this to print the columns ofthe month: set the field width to 3 before printing each day.Save your project files in w/projects/calendar2
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question