Question: debug C++ #include using namespace std; int main() { numReviewers = 0; rating = 0; reviewer = 1; cout < < How many reviewers? ;

debug C++

#include

using namespace std;

int main()

{

numReviewers = 0;

rating = 0;

reviewer = 1;

cout << "How many reviewers? ";

cin >> num;

if (numReviewers > 0)

{

cout << "Movie ratings must be from 1 to 5." << endl << endl;

while (reviewer <= numReviewers)

cout << "Reviewer " << reviewer << " rating: ";

cin >> rating;

if (rating > 0 && rating < 6)

{

cout << " ";

for (int star = 1; star <= rating; star += 1);

cout << "*";

//end for

reviewer += 1;

}

else

cout << "The rating must be from 1 to 5." << endl;

//end if

cout << endl;

//end while

} //end if

return 0;

} //end of main function

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!