標題:
for 迴圈 (三)
[打印本頁]
作者:
tonyh
時間:
2015-5-1 19:55
標題:
for 迴圈 (三)
本帖最後由 tonyh 於 2015-5-1 20:18 編輯
利用for迴圈, 在畫面上直列顯示100以內所有2的倍數.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-5-1 20:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-5-1 20:10
本帖最後由 tonyh 於 2015-5-1 20:17 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2015-5-1 20:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-5-1 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0 ; i<=100 ; i=i+2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2