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