摘要: 1,#include<stdio.h> main(){ int i=1;int sum=0; while(i<=21) {sum+=i; i+=2; } printf("sum=%d\n",sum); } 2, #include<stdio.h> main(){ int i=1;double sum 阅读全文
posted @ 2021-11-04 17:46 计算机2106尹金袁 阅读(9) 评论(0) 推荐(0)