標題:
for 迴圈 (三)
[打印本頁]
作者:
王瑞喻
時間:
2020-4-24 17:18
標題:
for 迴圈 (三)
利用 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;
}
複製代碼
作者:
董定宇
時間:
2020-4-25 16:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鐘彥博
時間:
2020-4-25 16:10
本帖最後由 鐘彥博 於 2020-4-25 16:13 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0;i<=100;i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
夏子涵
時間:
2020-4-25 16: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;
}
複製代碼
作者:
呂尚霖
時間:
2020-4-25 16:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=100; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝承志
時間:
2020-4-25 16:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0;i<=100;i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林帛毅
時間:
2020-4-25 16:27
#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