標題:
while 迴圈 (三)
[打印本頁]
作者:
周政輝
時間:
2017-5-20 09:21
標題:
while 迴圈 (三)
試著印出 123~999之間
所有3的倍數的總和
作者:
莊旻叡
時間:
2017-5-20 09:28
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int a=123,b=0;
while(a<=999)
{
a%3==0?b+=a:b;
a++;
}
cout<<b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高品溫
時間:
2017-5-20 09:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=123,d=0;
while(a<=999)
{
a%3==0?d+=a:a;
a++;
}
cout<<d<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高睿辰
時間:
2017-5-26 18:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=123;
int b=0;
while(i<=999)
{
b+=i;
i+=3;
}
cout<<"總合為:"<<b<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2