2019年5月9日
摘要: #include <stdio.h>int main(){ long s=0; int i; for(i=22;i<=1002;i=i+20) { s=s+i; } printf("s=%ld\n",s); return 0;} #include <stdio.h>int main(){ long 阅读全文
posted @ 2019-05-09 14:38 guofudiyilianan 阅读(137) 评论(0) 推荐(0) 编辑