Question: Consider the following code fragment: int line = 0; char ch; while (cin.get(ch)) { if (ch == 'Q') break; if (ch != ' ') continue;
Consider the following code fragment:
int line = 0;
char ch;
while (cin.get(ch))
{
if (ch == 'Q')
break;
if (ch != '\n')
continue;
line++;
}
Rewrite this code without using break or continue.
Step by Step Solution
3.44 Rating (154 Votes )
There are 3 Steps involved in it
int line 0 char ch while cingetch if line 0 if ch Q continue Replace break with continue ... View full answer
Get step-by-step solutions from verified subject matter experts
