摘要: #include <stdio.h> int main() { int i; long s; s=0; for(i=22;i<=1002;i=i+20) { s=i+s; } printf("%d\n",s); return 0; } #include <stdio.h>int main(){ in 阅读全文
posted @ 2019-04-25 15:05 Vaik134 阅读(102) 评论(0) 推荐(0) 编辑