標題:
顯示 谷歌人5號 到 谷歌人1號
[打印本頁]
作者:
游東祥
時間:
2013-9-15 09:48
標題:
顯示 谷歌人5號 到 谷歌人1號
讓程式如下顯示:
谷歌人5號
谷歌人4號
谷歌人3號
谷歌人2號
谷歌人1號
作者:
張峻瑋
時間:
2013-9-15 11:11
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i = 5 ; i >= 1 ; i-=1 )
{
cout << "谷哥人" << i << "號" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李彥彤
時間:
2013-9-15 11:15
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int a = 5 ;a >= 1;a=a-1)
{
cout<< "谷哥人" << a << "號" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-9-15 11:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=5; i>=1; i--)
{
cout << "谷歌人" << i << "號" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-9-15 11:18
#include <iostream>
#include<cstdlib>
using namespace std;
int main ()
{
for (int i = 5; i >= 1; i--)
{
cout << "谷哥人" << i << "號" << endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
謝典育
時間:
2013-9-15 11:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for (int i = 5; i >= 1; i -= 1)
{
cout<< " 谷哥人 " << i << " 號 " << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-9-28 12:07
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i = 5 ; i >= 1 ; i-- )
{
cout << "谷哥人" << i << "號" << endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2