標題:
for 迴圈 (二)
[打印本頁]
作者:
tonyh
時間:
2019-6-22 10:25
標題:
for 迴圈 (二)
本帖最後由 tonyh 於 2019-6-22 10:27 編輯
利用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;
}
複製代碼
作者:
劉愷恩
時間:
2019-6-22 11:01
本帖最後由 劉愷恩 於 2019-6-22 11:25 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-6-22 11:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-6-22 11:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曾宥程
時間:
2019-6-22 11:02
本帖最後由 曾宥程 於 2019-6-22 11:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-6-22 11:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
複製代碼
作者:
蔡少宇
時間:
2019-6-27 18:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=100; i>=40; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-6-27 18:09
本帖最後由 鄭羽捷 於 2019-6-27 18:10 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i<=10; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-4-23 17:20
#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