Suppose you are given the following information:      Integer:first_day. This is the day on Jan 1 where 0 is sunday 1 is monday and ... 6 is Saturday      Integer: leap_year. leap_year=1 indciates that the given year is leap year and 0 indicates not a leap year       Integer: date (between 1 to Max days of the month, both inclusive)      Integer: month (between 1 to 12, both inclusive) The task is to find the day name on the given date and print the output in the following format:     June 10 is Saturday  Valide the input values and print appropriate error messages. Make sure to comply the output format. Month name should be printed instead of numerical equal of the day.  Also day name should be printed instead of numerical equal of the month. This in C++.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 12PE
icon
Related questions
Question
(THIS IS THE GIVEN CODE)
int main(int argc, char *argv[]) {
    int first_day = atoi(argv[1]);
    int leap_year = atoi(argv[2]);
    int date = atoi(argv[3]);
    int month = atoi(argv[4]);
 
 
return 0;}
 
(THIS IS THE PROBLEM:)
 Suppose you are given the following information:
     Integer:first_day. This is the day on Jan 1 where 0 is sunday 1 is monday and ... 6 is Saturday
     Integer: leap_year. leap_year=1 indciates that the given year is leap year and 0 indicates not a leap year 
     Integer: date (between 1 to Max days of the month, both inclusive)
     Integer: month (between 1 to 12, both inclusive)
The task is to find the day name on the given date and print the output in the following format:
    June 10 is Saturday
 Valide the input values and print appropriate error messages.
Make sure to comply the output format. Month name should be printed instead of numerical equal of the day.
 Also day name should be printed instead of numerical equal of the month.
This in C++.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr