標題:
for 迴圈 (二)
[打印本頁]
作者:
tonyh
時間:
2016-4-23 10:26
標題:
for 迴圈 (二)
利用for迴圈, 在畫面上直列顯示25~10.
作者:
張孟軒
時間:
2016-4-23 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int i;
for(i=25;i>=10;i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
高允懋
時間:
2016-4-23 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25;i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
康湍榆
時間:
2016-4-23 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-4-23 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃茂勛
時間:
2016-4-23 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-4-23 10:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=25; i>=10; i--)
cout<<i<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-4-23 10:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int a;
for(a=25; a>=10; a--)
cout<<a<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2