fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i = 0;
  5. while (i <= 9) {
  6. if (i % 2 == 0) {
  7. i++;
  8. continue;
  9. }
  10.  
  11. printf("%d\n", i++);
  12. }
  13. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
1
3
5
7
9