標題:
while 迴圈 (二)
[打印本頁]
作者:
周政輝
時間:
2017-5-20 09:10
標題:
while 迴圈 (二)
請計算1~100內 奇位數的和
Ans:1717
作者:
莊旻叡
時間:
2017-5-20 09:14
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int a=1,b=0;
while(a<=100)
{
b+=a;
a+=2;
}
cout<<b<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高品溫
時間:
2017-5-20 09:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int num=1,num2=0;
while(num<=100)
{
num2+=num;
cout<<num<<endl;
num+=2;
}
cout<<num2<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高睿辰
時間:
2017-5-26 18:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i=1;
int b=0;
while(i<=100)
{
b+=i;
i+=2;
}
cout<<"總合為:"<<b<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2