標題:
[作業]while 迴圈 (三)
[打印本頁]
作者:
張翼安
時間:
2015-12-19 00:18
標題:
[作業]while 迴圈 (三)
本帖最後由 張翼安 於 2015-12-19 11:53 編輯
利用 while 迴圈計算 123~456 間, 所有3的倍數的總和.
即 123+126+129+...+453+456=?
作者:
張健勳
時間:
2015-12-19 12:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=123,ans=0;
while(i<=456){
ans=ans+i;
i=i+3;
}
cout<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-12-19 12:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=123,ans=0;
while(i<=456){
ans=ans+i;
i=i+3;
}
cout<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-12-19 12:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int h=123,ans=0;
while(h<=456){
ans=ans+h;
h=h+3;
}
cout<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-12-23 18:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=123,y=0;
while(x<=456)
{
y=y+x;
x=x+3;
}
cout<<"123+126+..........+456="<<y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-12-25 17:57
本帖最後由 蔡季樺 於 2015-12-26 10:39 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=123,ans=0;
while(i<=456)
{
ans+=i;
i+=3;
}
cout<<"123+126+129+...+453+456="<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-12-25 18:01
本帖最後由 蔡季樺 於 2015-12-25 18:04 編輯
回復
2#
張健勳
你們
作者:
蔡季樺
時間:
2015-12-25 18:02
回復
3#
任立宇
好像
作者:
蔡季樺
時間:
2015-12-25 18:02
回復
4#
張文擇
寫錯
作者:
蔡季樺
時間:
2015-12-25 18:04
回復
5#
蔡庭豪
了!
作者:
吳承勳
時間:
2015-12-26 09:42
本帖最後由 吳承勳 於 2015-12-26 10:04 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i = 123, ans = 0;
while(i <= 456)
{
ans=ans+i;
i = i + 3;
}
cout<< ans << endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2