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