Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
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 And please write a pseudo code for the program
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started