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