fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int c = 0;
  5. while(c < 10)
  6. {
  7. c = c + 1;
  8. if(c % 2 == 0)
  9. {
  10. continue;
  11. }
  12. printf("%d\n", c);
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0s 4588KB
stdin
stdout
1
3
5
7
9