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
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
Get step-by-step solutions from verified subject matter experts
