fork(1) download
  1. /*プレテスト7 */
  2.  
  3. #include<stdio.h>
  4.  
  5. main()
  6. {
  7. int x,y;
  8.  
  9. for(x=1;x<=100;x++){
  10. if(x%2==0){
  11. continue;
  12. }else{
  13. y=(y+x);
  14. }}
  15. printf("%d",y);
  16. }
  17.  
  18.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
-1246720308