Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Look a program example 3 above. Fix the condition so it is NO longer an infinite loop Code Example 3 Try it #include using

C++

Look a program example 3 above. Fix the condition so it is NO longer an infinite loop

Code Example 3 Try it #include using namespace std; int main ( ) { // Calculate grade average int numberGrades = 0; int sumGrades = 0; int aGrade = 0; cout << "How many grades to enter: "; cin >> numberGrades; int i = 1; // 1st element of loop - declare and set initial value while ( i <= numberGrades ) { // 2nd element of loop - condition cout << "Enter Grade: "; cin >> aGrade; sumGrades = sumGrades + aGrade; i++; // 3rd element of loop - update value } cout << "Grade Average = " << sumGrades/numberGrades << endl; system ("pause"); return 0; }

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

Principles Of Database Systems With Internet And Java Applications

Authors: Greg Riccardi

1st Edition

020161247X, 978-0201612479

More Books

Students also viewed these Databases questions

Question

please try to give correct answer 3 3 .

Answered: 1 week ago