標題:
for 迴圈 (三)_顯示100以內所有2的倍數
[打印本頁]
作者:
tonyh
時間:
2019-8-30 19:53
標題:
for 迴圈 (三)_顯示100以內所有2的倍數
利用 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 20:12
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
for(int i=0; i<=100; i=i+2)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-8-30 20:12
#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 20:12
#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 20:12
#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 20:12
#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 20:12
#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 20:12
#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 20:12
#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 20:12
#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 20:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-8-30 20:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int q=0; q<=100; q+=2)
cout<<q<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2