標題:
for 迴圈 (三)
[打印本頁]
作者:
許婷芳
時間:
2019-8-30 10:00
標題:
for 迴圈 (三)
本帖最後由 許婷芳 於 2019-8-30 11:01 編輯
利用 for 迴圈,在畫面上直列顯示100以內所有2的倍數。
請先使用加法即可。
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2) //i=i+2 i+=2
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪承廷
時間:
2019-8-30 19:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林祐霆
時間:
2019-8-30 19:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝以愛
時間:
2019-8-30 19: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;
}
複製代碼
作者:
謝以恩
時間:
2019-8-30 19:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2) //i=i+2 i+=2
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
尤爾呈
時間:
2019-8-30 19:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i>=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
廖文綺
時間:
2019-8-30 19:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇詠翔
時間:
2019-8-30 19:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇韋誠
時間:
2019-8-30 19:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2