用while语句,计算s=1+2+3+…+100 #include<stdio.h> int main() { int a,b; a=1; b=0; while(a<=100) { b=a+b; a++; } printf("1-100的和为%d\n",b); return 0; } 完成效果