test30.cvc 126 B

123456789
  1. void test_do_while2()
  2. {
  3. int x = 0;
  4. int y = 10;
  5. do {
  6. x = x + 1;
  7. y = y - 1;
  8. } while (x <= y);
  9. }