Question: I want to write program for this problem in Geany with C++ language And please write a pseudo code for the program 7. Write a

I want to write program for this problem in Geany with C++ language
And please write a pseudo code for the program
 I want to write program for this problem in Geany with
C++ language And please write a pseudo code for the program 7.
Write a program that inputs a date (for example, July 4, 2008)

7. Write a program that inputs a date (for example, July 4, 2008) and outputs the day of the week that corresponds to that date. The following algorithm is from http://en.wikipedia.org/wiki/Calculating_the_day_of the_week. The implementation will require several functions. bool isLeapYear (int year); This function should return true if year is a leap year and false if it is not. Here is pseudocode to determine a leap year: leapYear = (year divisible by 400) or (year divisible by 4 and year not divisible by 100)) int getCenturyValue (int year); This function should take the first two digits of the year (that is, the century), divide by 4, and save the remainder. Subtract the remainder

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!