標題:
【隨堂測驗】計算連續數字的總和
[打印本頁]
作者:
陳育霖
時間:
2023-6-26 23:43
標題:
【隨堂測驗】計算連續數字的總和
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳品諺
時間:
2023-6-27 16:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b;
int ans=0;
re:
ans=0;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
if(a<b)
{
for(int i=a;i<=b;i++)
{
ans+=i;
}
cout<<"從"<<a<<"到"<<b<<"所有整數的總和為: "<<ans<<endl;
}
else
{
for(int i=b;i<=a;i++)
{
ans+=i;
}
cout<<"從"<<a<<"到"<<b<<"所有整數的總和為: "<<ans<<endl;
}
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2