Computer Science, asked by ArthurPreston, 9 months ago

6. Read the following C++ code snippet:
for (n=1; n<5; ++n)
{
cout<<i;
if (i==2) continue;
if (i%3==0) break;
cout<<"Hello";
}
Choose the correct output of this code from the following:
a. 1Hello2Hello3Hello4Hello b. 1 Hello2Hello3
c. 1 Hello23
d. 1Hello23Hello​

Answers

Answered by Anonymous
3

what is your question define and correct it…

Similar questions