Answered step by step
Verified Expert Solution
Question
1 Approved Answer
int sales = 0; int region = 1; int totRegSales = 0; while (region < 3) { cout < < First sales amount for Region
int sales = 0; int region = 1; int totRegSales = 0; while (region < 3) { cout << "First sales amount for Region " << region << ": "; cin >> sales; while (sales > 0) { totRegSales = totRegSales + sales; cout << "Next sales amount for Region " << region << ": "; cin >> sales; } //end while cout << endl << "Region " << region << " sales: $" << totRegSales << endl << endl; region = region + 1; totRegSales = 0; } //end while cout << "End of program" << endl;
In the code shown above, the ____ clause begins the inner loop.
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