標題:
[作業] while 迴圈 (三)
[打印本頁]
作者:
方浩葦
時間:
2024-4-19 11:31
標題:
[作業] while 迴圈 (三)
利用 while 迴圈計算 123~456 間, 所有3的倍數的總和.
即 123+126+129+...+453+456=?
本帖隱藏的內容需要回復才可以瀏覽
作者:
鄭豊翰
時間:
2024-5-4 16:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=123, sum=0;
while(i<=456)
{
i+=3;
sum+=i;
}
cout<<"123+126+129+...+453+456="<<sum<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2