知識社群
登入
中文(台灣)
English(US)
Q&A
線上人數:
160
AutoCAD開放式教學
社群功能
社群首頁
文件區
(34)
精華區
行事曆
活動
討論區
(454)
即時塗鴉牆
問卷
相簿
(5)
申請加入社群
文件分類
[
總覽
]
未分類
(34)
程式設計相關
常用連結
版主在台灣大學 資工所 系統訓練班的 課程介紹網頁
良葛格的 C語言程式教學講義
社群資訊
訪客: 536412
文章: 34
討論: 454
公告: 2
容量: 剩餘
433 MB
(500 MB)
閱讀權限: 開放
分類:
電腦資訊 / 軟體教學
版主: 高顯忠
副版主: 無
位置:
AutoCAD開放式教學
>
討論區
>
討論
第一題
(高顯忠,
sjgau4311@gmail.com
, 2011-01-30 10:25)
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()
© 2010 FormosaSoft Corp.
http://www.powercam.com.tw
service@powercam.com.tw
All rights reserved.
#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()