標題:
for 迴圈 (一)
[打印本頁]
作者:
tonyh
時間:
2015-4-24 20:48
標題:
for 迴圈 (一)
本帖最後由 tonyh 於 2015-4-24 21:23 編輯
利用for迴圈, 在畫面上直列顯示1~10.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//起始值 終止值 遞增或遞減的條件
for(int i=1; i<=10; i++) //i=i+1
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-4-24 21:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-4-24 21:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
沈子耕
時間:
2015-4-24 21:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i<=10; i++)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2015-4-24 21:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//起始值 終止值 遞增或遞減的條件
for(int i=1; i<=10; i++) //i=i+1
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
曾挺桂
時間:
2015-4-24 21:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2