標題:
【競賽】題目一:顯示文字
[打印本頁]
作者:
游東祥
時間:
2013-8-15 00:20
標題:
【競賽】題目一:顯示文字
本帖最後由 游東祥 於 2013-8-15 12:04 編輯
題目一:顯示文字
題目要求:
在畫面上第一行顯示「
2013谷哥人夏令營
」字樣。
在畫面上第二行顯示學員名字「
學生:陳小明
」。
P.S. 請注意「陳小明」請改為自己的本名才算答對噢!
執行結果:
(以老師為範例)
[attach]742[/attach]
作者:
施伯叡
時間:
2013-8-15 10:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
cout <<"2013谷哥人夏令營"<<endl;
cout <<"學生:施伯叡"<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-8-15 10:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:張瀚仁"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
徐義翔
時間:
2013-8-15 10:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:徐義翔"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳寧莉
時間:
2013-8-15 10:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout <<"2013谷哥人夏令營"<<endl;
cout <<"學生:陳寧莉"<<endl;
system("pause");
return 0;
複製代碼
作者:
柯璟廷
時間:
2013-8-15 10:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:柯璟廷"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡秉修
時間:
2013-8-15 10:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:蔡秉修"<<endl;
system("pause");
reurn 0;
}
複製代碼
作者:
李恆
時間:
2013-8-15 10:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "2013谷哥人夏令營" << endl;
cout << "學生:李恆" << endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡凱益
時間:
2013-8-15 10:19
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout << "2013谷哥人夏令營"<<endl;
cout <<"學生:蔡凱益"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳宗桓
時間:
2013-8-15 10:19
#include <iostream> //引入輸出輸入指令
#include <cstdlib> //引入c的語言 的標準函式
using namespace std; //用標準函式庫命名空間
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:吳宗桓"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-8-15 10:20
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<< "2013谷哥人夏令營" <<endl;
cout<<"學生:張彥承"<< endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-8-15 10:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"2013谷歌人夏令營"<<endl;
cout<<"學生:張郁偵"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
薛景謙
時間:
2013-8-15 10:25
#include <iostream> //引入輸出輸入的指令
#include <cstdlib> //引入C的標準函式
using namespace std; //使用標準函式庫命名空間
int main() //程式從 "main" 開始執行
{
cout << "2013谷哥人夏令營" <<endl;
cout << "學生:薛景謙" <<endl;
system("pause"); //讓程式暫停
return 0; //程式執行正確
}
複製代碼
作者:
張峻瑋
時間:
2013-8-15 10:26
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:張峻瑋"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-8-15 10:28
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:張郁庭"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳國蘢
時間:
2013-8-15 10:43
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:陳國蘢"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-8-15 10:51
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<< "2013谷哥人夏令營" <<endl;
cout<< "學生:周雍程" <<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-8-15 11:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"2013谷哥人夏令營"<<endl;
cout<<"學生:蘇昱安"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2