求C程序 用while语句计算 s=1+2+3+……+99+100.

日期:2010-05-17 22:58:57 人气:1

求C程序 用while语句计算 s=1+2+3+……+99+100.

//用while语句计算 s=1+2+3+……+99+100. #include void main() { int i=0,n=0; while (i++<100) n+=i; printf("%d\n",n); }
    A+
热门评论