標題:
for 迴圈 (一)
[打印本頁]
作者:
tonyh
時間:
2017-10-18 17:54
標題:
for 迴圈 (一)
利用for迴圈, 在畫面上直列顯示1~10 (由小而大).
作者:
蒙鎧柔
時間:
2017-10-18 18:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=10;i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2017-10-21 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
main()
{
for(int i=1;i<=10;i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2017-10-21 22:32
#include<iostream>
#include<cstdlib>
using namespace std;
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