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