tes thild attends The Days Per Week 1 2 3 Age in Years 30.00 60.00 88.00 5 26.00 52.00 115.00 70.00 140.00 96.00 24.00 46.00 120.00 1 67.00 89.00 2 22.00 40.00 60.00 110.00 75.00 3 20.00 35.00 50.00 88.00 66.00 84.00 4 or more Table 8-2 Weekly rates for Lab 8-3 The program should allow the user to enter the age of the child and the number of days per week the child will be at the day care center. The program should output the appropriate weekly rate. The file provided for this lab contains all of the necessary variable declarations, except the two-dimensional array. You need to write the input statements and the code that initializes the two-dimensional array, determines the weekly rate, and prints the weekly rate. Comments in the code tell you where to write your statements. 1. Open the source code file named DayCare.cpp using Notepad or the text editor of 2. Declare and initialize the two-dimensional array. Write the C++ statements that retrieve the age of the child and the number of days your choice. 3. the child will be at the day care center. 4. Determine and print the weekly rate. - Save this source code file in a directory of your choice, and then make that directory your working directory. 6. Compile the source code file DayCare.cpp. 7. Execute the program.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 1TF: Mark the following statements as true or false. A double type is an example of a simple data type....
icon
Related questions
Question
for the Building Block Day Care Center. The program is described in Chapter 8, Exercise 10.
Arrays
2. Declare and initialize the two-dimensional
weekly rate. The file provided for this lab contains all of the necessary variable declarations,
Comments in the code tell you where to write your statements.
The program should allow the user to enter the age of the child and the number of days per
in Logic and Design. The day care center charges varying weekly rates
of the child and the number of days per week the child attends. The
La
you
initializes the two-dimensional array, determines the weekly rate, and prints the weekly rate.
will complete a C++ program that uses a two-dimensional array to store data
3. Write the C++ statements that retrieve the age of the child and the number of days
except the two-dimensional array. You need to write the input statements and the code that
1. Open the source code file named DayCare.cpp using Notepad or the text editor of
week the child will be at the day care center. The program should output the appropriate
In this lab,
the
age
on
1.39
depending
Days Per Week
1
Age in Years
30.00
60.00
4
88.00
26.00
52.00
115.00
24.00
70.00
140.00
1
46.00
96.00
67.00
120.00
2
22.00
40.00
89.00
60.00
110.00
3
20.00
35.00
75.00
50.00
88.00
66.00
4 or more
Weekly rates for Lab 8-3
84.00
Table 8-2
The program
program
should
output the appropriate
array. You need to write the input statements and the code that
Comments in the code tell
an the source code file named DayCare.cpp using Notepad
you
where to write
your statements.
or the text editor of
your choice.
2 Declare and initialize the two-dimensional
array.
the child will be at the day care center.
4. Determine and print the weekly rate.
- Save this source code file in a directory of your choice, and then make that directory
your working directory.
6. Compile the source code file DayCare.cpp.
7. Execute the program.
Transcribed Image Text:for the Building Block Day Care Center. The program is described in Chapter 8, Exercise 10. Arrays 2. Declare and initialize the two-dimensional weekly rate. The file provided for this lab contains all of the necessary variable declarations, Comments in the code tell you where to write your statements. The program should allow the user to enter the age of the child and the number of days per in Logic and Design. The day care center charges varying weekly rates of the child and the number of days per week the child attends. The La you initializes the two-dimensional array, determines the weekly rate, and prints the weekly rate. will complete a C++ program that uses a two-dimensional array to store data 3. Write the C++ statements that retrieve the age of the child and the number of days except the two-dimensional array. You need to write the input statements and the code that 1. Open the source code file named DayCare.cpp using Notepad or the text editor of week the child will be at the day care center. The program should output the appropriate In this lab, the age on 1.39 depending Days Per Week 1 Age in Years 30.00 60.00 4 88.00 26.00 52.00 115.00 24.00 70.00 140.00 1 46.00 96.00 67.00 120.00 2 22.00 40.00 89.00 60.00 110.00 3 20.00 35.00 75.00 50.00 88.00 66.00 4 or more Weekly rates for Lab 8-3 84.00 Table 8-2 The program program should output the appropriate array. You need to write the input statements and the code that Comments in the code tell an the source code file named DayCare.cpp using Notepad you where to write your statements. or the text editor of your choice. 2 Declare and initialize the two-dimensional array. the child will be at the day care center. 4. Determine and print the weekly rate. - Save this source code file in a directory of your choice, and then make that directory your working directory. 6. Compile the source code file DayCare.cpp. 7. Execute the program.
#include <iostream>
using namespace std;
int main()
{
// Declare two dimensional array here
// Declare other variables
int numDays;
int age;
int QUIT =
99;
// This is the work done in the getReady ()
function
// Perform a priming read to get the age of the
child
while (age != QUIT)
{
// This is the work done in the
determineRateCharge() function
// Ask the user to enter the number of days
// Print the weekly rate
// Ask the user to enter the next child's age
}
// This is the work done in the finish()
function
cout << "End of program" << endl;
return 0;
} // End of main() function
Transcribed Image Text:#include <iostream> using namespace std; int main() { // Declare two dimensional array here // Declare other variables int numDays; int age; int QUIT = 99; // This is the work done in the getReady () function // Perform a priming read to get the age of the child while (age != QUIT) { // This is the work done in the determineRateCharge() function // Ask the user to enter the number of days // Print the weekly rate // Ask the user to enter the next child's age } // This is the work done in the finish() function cout << "End of program" << endl; return 0; } // End of main() function
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
InputStream
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++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr