標題:
for 迴圈 (二)
[打印本頁]
作者:
tonyh
時間:
2016-10-22 13:42
標題:
for 迴圈 (二)
本帖最後由 tonyh 於 2019-8-19 22:59 編輯
利用for迴圈, 在畫面上直列顯示25~10.
本帖隱藏的內容需要回復才可以瀏覽
作者:
曾彥翔
時間:
2016-10-22 13:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2016-10-22 13:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2016-10-22 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳晉榕
時間:
2016-10-22 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱聿謙
時間:
2016-10-22 14:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2016-10-22 14:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許紘誌
時間:
2016-10-22 14:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i-=1)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蕭澧邦
時間:
2016-10-22 14:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪榜蔓
時間:
2016-10-27 17:42
#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