標題:
for 迴圈 (三)
[打印本頁]
作者:
tonyh
時間:
2019-6-22 10:25
標題:
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;
}
複製代碼
作者:
劉愷恩
時間:
2019-6-22 11:00
本帖最後由 劉愷恩 於 2019-6-22 11: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;
}
複製代碼
作者:
郭哲維
時間:
2019-6-22 11:03
本帖最後由 郭哲維 於 2019-6-22 11:25 編輯
#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-6-22 11:03
本帖最後由 曾宥程 於 2019-6-22 11:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=2; i<=100; i+=2)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-6-22 11:04
#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-6-22 11:09
#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-6-27 19:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=0; i<=20; i+=2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-6-28 22:20
#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-23 17:25
#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;
}
複製代碼
作者:
黃泰來
時間:
2020-11-14 17:41
#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;
}
複製代碼
作者:
黃泰來
時間:
2020-11-14 18:20
#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