標題:
【競賽】題目四:好多谷歌人
[打印本頁]
作者:
游東祥
時間:
2013-8-15 08:25
標題:
【競賽】題目四:好多谷歌人
本帖最後由 游東祥 於 2013-8-15 12:05 編輯
題目四:好多谷歌人
題目要求:
在畫面第一行顯示「
谷哥人數量:
」,並停留在第一行等待使用者輸入。
從畫面第二行開始顯示「
谷哥人1號
」、「
谷哥人2號
」、「
谷哥人3號
」..... 直到第一步驟輸入的數量(
如果第一步驟輸入99,則顯示到「谷哥人99號」
)。
每一個谷哥人都必需
換行
處理。
本題請
使用 for 迴圈
作答,且 cout 最多只能出現 3 次。
P.S. 請注意,本題為第三題的進階版,請先完成第三題再來挑戰喔!
執行結果:
[attach]744[/attach]
作者:
張瀚仁
時間:
2013-8-15 10:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"谷哥人數量:";
cin>>a;
for(int i=1;i<=a;i++)
{
cout<<"谷哥人"<<i<<"號"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
薛景謙
時間:
2013-8-15 10:40
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
int x;
cout << "谷哥人數量:";
cin >> x;
for (int y=1; y < (x+1); y++)
{
cout << "谷哥人" << y << "號" <<endl;
}
system("pause"); //讓程式暫停
return 0; //程式執行正確
}
複製代碼
作者:
陳國蘢
時間:
2013-8-15 11:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i = 1; i < 100; i++)
{
cout << "谷哥人" << i << "號" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-8-15 11:20
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int a;
cout << "谷歌人數量:";
cin >> a;
for (int i = 1; i<=a ; i++)
{
cout << "谷歌人"<< i << "號" <<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
陳寧莉
時間:
2013-8-15 11:22
#include <iostream> //引入輸出.入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //使用標準函式庫命名
int main() //程式從"main"執行
{
int x;
cout<<"谷哥人數量";
cin>>x;
for(int i=1;i<=x;i++)
cout <<"谷哥人"<<i<<"號"<< endl;
system("pause"); //讓程式暫停
return 0; //告訴程式執行正確
}
複製代碼
作者:
徐義翔
時間:
2013-8-15 11:25
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout <<"谷哥人數量:" <<endl;
for(int i=1; i>0; i++)
cout <<"谷哥人"<< i << "號" <<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-8-15 11:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int d;
cout<<"谷哥人數量:";
cin>>d;
for(int i=0; i<=10; i++)
{
cout<<"第"<<i<<"名"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李恆
時間:
2013-8-15 11:32
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
{
int a;
cout << "請輸入谷歌人數量:";
cin >> a;
}
system("pause");
return 0;
}
複製代碼
作者:
柯璟廷
時間:
2013-8-15 11:32
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i=1; i<10; i++)
{
cout <<"谷哥人"<< i <<"號"<< endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡凱益
時間:
2013-8-15 11:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i = ; i < ; i++)
{
cout << "谷哥人數量" << endl;
}
{
cout << "谷哥人" << i << "號" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-8-15 11:33
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"谷哥人數量 j:"<<endl ;
cin>>j;
for(int i=1;i<j;i++)
{
cout<<"谷哥人"<<i<<"號"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
徐義翔
時間:
2013-8-15 11:36
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "谷哥人數量:" <<endl;
for(int i=1; i>0; i++)
cout <<"谷哥人"<< i << "號" <<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-8-15 11:38
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for (int i = 1; i < 10; i++)
{
cout << "谷哥人" << i << "號" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳宗桓
時間:
2013-8-15 11:41
#include <iostream> //引入輸出輸入指令
#include <cstdlib> //引入c的語言 的標準函式
using namespace std; //用標準函式庫命名空間
int main()
{
cout<<"谷哥人數量:"<<endl;
for (int i = 1; i < 500; i++)
{
cout << "谷哥人" << i << "號" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
徐義翔
時間:
2013-8-15 11:42
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "谷哥人數量:" <<endl;
for(int i=1; i>0; i++)
cout <<"谷哥人"<< i << "號" <<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-8-15 11:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"谷哥人數量:";
cin>> x;
for(int i=0; i<=x; i++)
{
cout<<"谷"<<i<<"哥人"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2