標題:
for 迴圈 (一)
[打印本頁]
作者:
tonyh
時間:
2018-7-12 15:23
標題:
for 迴圈 (一)
利用for迴圈, 在畫面上直列顯示25~10.
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//初始值 終止值 遞增或遞減的條件
for(int i=25; i>=10; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
古蕾娜
時間:
2018-7-12 15:53
本帖最後由 古蕾娜 於 2018-7-12 15:56 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for (int i= 25; i>=10; i++)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
古昇暘
時間:
2018-7-12 15:55
本帖最後由 tonyh 於 2018-7-12 16:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for (int i=25;i>=10;i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2