The following program will display the days for a month of the year. The input to the program is the number of days and the day of the week on which the first day of the month falls. The following program uses for loops to draw a rectangle of desired size. // P43a.cpp - This program displays the days of a month // Day 0: Sunday, Day 1: Monday, Day 2: Tuesday // Day 3: Wednesday, Day 4: Thursday, Day 5: Friday // Day 6: Saturday #include #include using namespace std; int main() { } int n_days, start_day; cout << "Enter the number of days, 28, 29, 30 or 31 \n"; cin >>n_days; cout << "Enter the first day of the month \n"; cin >>start_day; cout << "Sun\tMon Tue Wed\tThr\tFri\tSat\n"; for(int i = 0; i < start_day; i++) { cout << "\t"; } for(int j = 1; j<=n_days; j++) { if(j%7 == 0) cout << endl; cout <

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section: Chapter Questions
Problem 9PP
icon
Related questions
Question
The following program will display the days for a month of the year. The input to the program is the
number of days and the day of the week on which the first day of the month falls.
The following program uses for loops to draw a rectangle of desired size.
// P43a.cpp - This program displays the days of a month
// Day 0: Sunday, Day 1: Monday, Day 2: Tuesday
// Day 3: Wednesday, Day 4: Thursday, Day 5: Friday
// Day 6: Saturday
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
}
int n_days, start_day;
cout << "Enter the number of days, 28, 29, 30 or 31 \n";
cin >> n_days;
cout << "Enter the first day of the month \n";
cin >>start_day;
cout << "Sun\tMon\tTue\tWed\tThr\tFri\tSat\n";
for(int i = 0; i < start_day; i++)
{
cout << "\t":
}
for(int j = 1; j <= n_days; j++)
{
if(j%7 == 0)
cout << endl;
cout <<j << "\t";
}
cout << endl;
return 0;
Exercise 4.4
Modify the above program such that it uses a function called display_month(int n_days, int start_day)
to display the days of a month. Call your new program ex44.cpp. In the new program, replace the
following segment:
Transcribed Image Text:The following program will display the days for a month of the year. The input to the program is the number of days and the day of the week on which the first day of the month falls. The following program uses for loops to draw a rectangle of desired size. // P43a.cpp - This program displays the days of a month // Day 0: Sunday, Day 1: Monday, Day 2: Tuesday // Day 3: Wednesday, Day 4: Thursday, Day 5: Friday // Day 6: Saturday #include<iostream> #include<cmath> using namespace std; int main() { } int n_days, start_day; cout << "Enter the number of days, 28, 29, 30 or 31 \n"; cin >> n_days; cout << "Enter the first day of the month \n"; cin >>start_day; cout << "Sun\tMon\tTue\tWed\tThr\tFri\tSat\n"; for(int i = 0; i < start_day; i++) { cout << "\t": } for(int j = 1; j <= n_days; j++) { if(j%7 == 0) cout << endl; cout <<j << "\t"; } cout << endl; return 0; Exercise 4.4 Modify the above program such that it uses a function called display_month(int n_days, int start_day) to display the days of a month. Call your new program ex44.cpp. In the new program, replace the following segment:
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Basics of loop
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,