摘要: 1. (1)用for循环 #include <stdio.h>int main(){ long s=0; int a; for(a=22;a<=1002;a=a+20){ s=s+a; } printf("%ld\n",s); return 0;} (2)用while循环 #include <std 阅读全文
posted @ 2019-05-09 15:00 P201821430035 阅读(111) 评论(0) 推荐(0) 编辑