fork download
  1. #include <stdio.h>
  2.  
  3. int main () {
  4. int a = 10;
  5. do {
  6. if ( a < 15) {
  7. a++;
  8. continue;
  9. }
  10. printf("value of a: %d\n", a);
  11. a++;
  12. } while( a < 20 );
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/80589/101
Success #stdin #stdout 0s 4392KB
stdin
Standard input is empty
stdout
value of a: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19