知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
第一題
1樓

#if 0

 sum= 1273484278
請按任意鍵繼續 . . .

 sum= 1273484278.000
請按任意鍵繼續 . . .

#endif
// ----------------------------------------------

#include <stdio.h>
#include <stdlib.h>
// ----------------------------------------------

int main()
 {
        int no= 50467;
        int i, sum;

        sum= 0;
        for (i=1;i<=no;i++) {
                sum+= i;
        }

        printf("\n sum= %ld \n", sum);
        system("pause");

        double xsum= (1.0 + no)*(no - 1.0 + 1.0)/2.0;
        printf("\n sum= %.3lf \n", xsum);
        system("pause");

        return 0;
 }// end of main()