Answered step by step
Verified Expert Solution
Link Copied!

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 ____ variable is used as an accumulator.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

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

Refactoring Databases Evolutionary Database Design

Authors: Scott Ambler, Pramod Sadalage

1st Edition

0321774515, 978-0321774514

More Books

Students also viewed these Databases questions