標題:
for 迴圈 (三)
[打印本頁]
作者:
tonyh
時間:
2015-10-31 10:59
標題:
for 迴圈 (三)
本帖最後由 tonyh 於 2015-10-31 11:51 編輯
利用for迴圈, 在畫面上直列顯示100以內所有2的倍數.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//初始值 終止值 遞增或遞減的條件
for(int i=2; i<=100; i+=2) //i=i+1 i+=1 i++
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-10-31 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=2; i<=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-10-31 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i = 2; i <= 100; i+=2)
{
cout << i << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-10-31 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//初始值 終止值 遞增或遞減的條件
for(int i=2; i<=100; i=1+2) //i=i+1 i+=1 i++
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-10-31 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(i=2;i<=100;i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-10-31 11:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=2; i>=100;i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2