標題:
for 迴圈 (一)
[打印本頁]
作者:
tonyh
時間:
2019-6-22 10:23
標題:
for 迴圈 (一)
本帖最後由 tonyh 於 2019-6-22 10:27 編輯
利用for迴圈, 在畫面上直列顯示1~10.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//初始值 持續條件 變化方式
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉愷恩
時間:
2019-6-22 11:00
本帖最後由 劉愷恩 於 2019-6-22 11:24 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-6-22 11:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-6-22 11:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-6-22 11:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曾宥程
時間:
2019-6-22 11:02
本帖最後由 曾宥程 於 2019-6-22 11:28 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡少宇
時間:
2019-6-27 17:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=50; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-6-27 17:52
本帖最後由 鄭羽捷 於 2019-6-27 17:54 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-4-23 17:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=10;i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2