Computer Science, asked by HARRY1064, 8 months ago

(c)Rewrite the following code fragment without break and continue :while(Ch!= '*'){ if(Ch == '?')break;if(Ch!= '\n')continue;a++; }​

Answers

Answered by rochak14
7

while(ch!='*' && ch!='?') {

if(ch=='\n') {

a++;

}

}

Similar questions