Question: Which line of code should replace the placeholder symbols ? ? ? in order to terminate the loop when the first grade greater

Which line of code should replace the placeholder symbols "???" in order to terminate the loop when the first grade greater than or equal to 90 is encountered?
int count =0;
bool found = false;
int grade;
while (! found && (cin > grade))
{
???
{
???
}
else count++};
}
if (grade 90)
{
found = true;
}
if (grade 90)
i
count--;
}
if (grade 90)
{
found = true;
}
If (grade =>90)
{
found = true;
}
 Which line of code should replace the placeholder symbols "???" in

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!