Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

// This program shows how the toupper and tolower functions can be // applied in a C++ program // PLACE YOUR NAME HERE #include #include

// This program shows how the toupper and tolower functions can be
// applied in a C++ program
// PLACE YOUR NAME HERE
#include
#include
#include
using namespace std;
int main()
{
int week, total, dollars;
float average;
char choice;
Lesson 10A 191
cout << showpoint << fixed << setprecision(2);
do
{
total = 0;
for(week = 1; week <= 4; week++)
{
cout << "How much (to the nearest dollar) did you"
<< " spend on food during week " << week
<< " ?:" << endl;
cin >> dollars;
total = total + dollars;
}
average = total / 4.0;
cout << "Your weekly food bill over the chosen month is $"
<< average << endl << endl;
do
{
cout << "Would you like to find the average for "
<< "another month?";
cout << endl << "Enter Y or N" << endl;
cin >> choice;
} while(toupper(choice) != 'Y' && toupper(choice) != 'N');
} while (toupper(choice) == 'Y');
return 0;
}


Exercise 1: Run the program several times with various inputs.


Exercise 2: Notice the following do-while loop which appears near the end of the program:
do
{
cout << "Would you like to find the average for another month?";
cout << endl << "Enter Y or N" << endl;
cin >> choice;
} while(toupper(choice) != 'Y' && toupper(choice) != 'N');
How would the execution of the program be different if we removed this loop? Try removing the loop but leave the following lines in the program:
cout << "Would you like to find the average for another month?";
cout << endl << "Enter Y or N" << endl;
cin >> choice;
Record what happens when you run the new version of the program.


Exercise 3: Alter program case_convert.cpp so that it performs the same task but uses tolower rather than toupper.


Step by Step Solution

3.51 Rating (154 Votes )

There are 3 Steps involved in it

Step: 1

Answer and step by step explanation Exercise 1 Run the program several times with various inputs When the program is run multiple times with different ... blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Income Tax Fundamentals 2013

Authors: Gerald E. Whittenburg, Martha Altus Buller, Steven L Gill

31st Edition

1111972516, 978-1285586618, 1285586611, 978-1285613109, 978-1111972516

More Books

Students also viewed these Programming questions

Question

how Bernoulli's principle can be applied in venturi meter

Answered: 1 week ago