標題:
for 迴圈 (三)
[打印本頁]
作者:
tonyh
時間:
2016-4-23 10:26
標題:
for 迴圈 (三)
本帖最後由 tonyh 於 2016-4-23 10:32 編輯
利用for迴圈, 在畫面上直列顯示 0~100 間所有2的倍數.
作者:
張孟軒
時間:
2016-4-23 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i;
for(i=0;i<=100;i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高允懋
時間:
2016-4-23 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0;i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
康湍榆
時間:
2016-4-23 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-4-23 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃茂勛
時間:
2016-4-23 10:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-4-23 10:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-4-23 10:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int a;
for(a=0; a<=100; a+=2)
cout<<a<<endl;
system("pause");
return 0;
}
複製代碼
作者:
方宥鈞
時間:
2016-5-2 19:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i;
for(i=2;i<=100;i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2