標題:
023 利用迴圈計算範圍數值總和
[打印本頁]
作者:
游東祥
時間:
2014-3-29 13:17
標題:
023 利用迴圈計算範圍數值總和
本帖最後由 游東祥 於 2014-3-29 13:30 編輯
[attach]862[/attach]
讓使用者輸入兩個數字,
然後計算這兩個數字之間的所有數字總和並顯示出來!
作者:
李允軒
時間:
2014-3-29 13:57
本帖最後由 李允軒 於 2014-3-29 13:58 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int i;
int j;
cout << "請輸入開始的數字:";
cin >> i;
cout << "請輸入結束的數字:";
cin >> j;
int k = 0;
for (int l = i; l <= j; l++)
{
k = k + l;
}
cout << "答案:" << k <<endl;
system("pause");
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-3-29 14:01
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout << "輸入起始的數字:" << endl;
cin >> x;
int y;
cout << "輸入結束的數字:" << endl;
cin >> y;
int g = 0;
for ( int i = x; i <= y; i++ )
{
g = g + i;
}
cout << "總和:"<< g <<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2