0
Looping
write a do...while loop counting from 100 to 200 by two's. using c++
1 Réponse
+ 1
I don't understand why you would need a do while loop. i would personally accomplish this with a for loop, with the counting part being (x=100; x<200;x+=2)
write a do...while loop counting from 100 to 200 by two's. using c++