登录

#include void main() { int i,s; for(i=1,s=0;i<10;i++) { if(i%3==0) continue; s+=i; } printf("%d\n",s); }

查看答案:0.2积分