The following code should output even integers from 2 to 100:
counter = 2;
do
{
cout << counter << endl;
counter += 2;
}
While ( counter < 100 );
Answers
Answered by
0
Answer:
Hi mate
Explanation:
I can't understand your question
Similar questions