標題:
for 迴圈 (三)
[打印本頁]
作者:
tonyh
時間:
2011-10-15 15:58
標題:
for 迴圈 (三)
本帖最後由 tonyh 於 2011-10-15 16:09 編輯
利用for迴圈, 列出從100倒數至1的所有數字.
本帖隱藏的內容需要回復才可以瀏覽
作者:
t3742238
時間:
2011-10-15 15:59
本帖最後由 t3742238 於 2011-10-15 16:16 編輯
#include <iostream>
using namespace std;
int main()
{
int i;
for(i=100; i>=1; i-=1)
{
cout<<i<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
尤泓鈞
時間:
2011-10-15 16:00
#include<iostream>
using namespace std;
int main()
{
for(int i=100; i>=1; i--)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉漢文
時間:
2011-10-15 16:01
本帖最後由 劉漢文 於 2011-10-15 16:16 編輯
#include <iostream>
using namespace std;
int main()
{
int i;
for(i=100; i>=1; i-=1)
{
cout<<i<<endl;
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
t2364705
時間:
2011-10-15 16:07
#include<iostream>
using namespace std;
int main()
{
for(int i=100; i>=1;i--)
{
cout<<i<<endl;
}
system("pause");
return 0 ;
}
複製代碼
作者:
t8155745
時間:
2011-10-15 16:07
#inclube <iostream>
using namespace std;
{
for(int i=100; i>=1; i--)
{
cout<<i<<end;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡昀佑
時間:
2011-10-15 16:16
#include<iostream>
using namespace std;
int main()
{
int i;
for(i=100;i>=1;i=i-1)
{
cout<<i<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2