標題:
[隨堂測驗] 計算連續數字的總和
[打印本頁]
作者:
鄭繼威
時間:
2023-2-10 01:54
標題:
[隨堂測驗] 計算連續數字的總和
本帖最後由 鄭繼威 於 2023-2-10 20:50 編輯
有印象之前的
for 迴圈 (五) - 累加
吧!?
半成品
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int sum=0;
int a,b;
//輸出與輸入
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
//起始值(起點);終止值(終點);控制項(步伐)
//for(a~b)
for(int i=a;i<=b;i+=1)
{
sum=sum+i;
}
cout<<"從"<<a<<"到"<<b<<"所有整數的總合為: "<<sum<<endl;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,sum=0;
cout<<"請輸入第一個數: ";
cin>>x;
cout<<"請輸入第二個數: ";
cin>>y;
if(x<y)
{
for(int i=x; i<=y; i++)
sum+=i;
}else
{
for(int i=y; i<=x; i++)
sum+=i;
}
cout<<"從"<<x<<"到"<<y<<"所有整數的總合為: "<<sum<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
曹祁望
時間:
2023-2-10 19:57
此帖僅作者可見
作者:
呂宗晉
時間:
2023-2-10 20:07
此帖僅作者可見
作者:
黃子豪
時間:
2023-2-10 20:07
此帖僅作者可見
作者:
廖秝瑜
時間:
2023-2-10 20:12
此帖僅作者可見
作者:
何權晉
時間:
2023-2-10 20:31
此帖僅作者可見
作者:
蔡沛倢
時間:
2023-2-10 20:37
此帖僅作者可見
作者:
邵凡榛
時間:
2023-2-10 20:37
此帖僅作者可見
作者:
盧玄皓
時間:
2023-2-10 20:49
此帖僅作者可見
作者:
張桔熙
時間:
2023-2-10 20:56
此帖僅作者可見
作者:
呂得銓
時間:
2023-2-13 18:15
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2