返回列表 發帖

【競賽】題目一:顯示文字

本帖最後由 許婷芳 於 2020-1-22 13:34 編輯

題目一:顯示文字

題目要求:

  • 在畫面上第一行顯示「2019谷哥人程式體驗營」字樣。
  • 在畫面上第二行顯示學員名字「學生:陳小明」。

P.S. 請注意「陳小明」請改為自己的本名才算答對噢!

[code#include<iostream>  
#include<cstdlib>   
using namespace std;   
int main()
{
   cout<<"2019谷哥人程式體驗營"<<endl;
   cout<<"學生:蘇柏羽"<<endl;
   cout<<endl;
   system("pause");   
   return 0;
}][/code]

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"2019谷哥人程式體驗營"<<endl;
  7.    cout<<"學生:蕭義賢"<<endl;
  8.    cout<<endl;
  9.    
  10.    
  11.    
  12.    system("pause");   
  13.    return 0;
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"2019谷哥人體驗營"<<endl;
  7.      cout<<"學生:穆玨諺"<<endl;
  8.     cout<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"2019谷哥人體驗營"<<endl;
  7.      cout<<"學生:穆玨諺"<<endl;
  8.     cout<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      cout<<"2019谷哥人程式體驗營"<<endl;
  7.      cout<<"學生:龔裕倫"<<endl;
  8.      cout<<"     "<<endl;
  9.      system("pause");
  10.      return 0;  
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"2019谷歌程式體驗營"<<endl;
  7.     cout<<"蘇冠丞"<<endl;

  8.       system("pause");   
  9.       return 0;   
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"2019谷哥人程式營"<<endl;
  7.   cout<<"學生:陳頡鴻"<<endl;
  8.   cout<<"     "<<endl;
  9.   system("pause");  
  10.    return 0;
  11. }
  12.   
  13.    
複製代碼
陳頡鴻

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"2019谷哥人程式體驗營"<<endl;
  7.     cout<<"學生:方廷愷"<<endl;
  8.     system("pause");
  9.     return 0;
  10. }     
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"2019谷哥人程式體驗營"<<endl;
  7.     cout<<"學生:姚夙薇"<<endl;
  8.     cout<<""<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      cout<<"2019谷哥人程式體驗營"<<endl;
  7.      cout<<"學生:鐘彥博"<<endl;
  8.      cout<<"     "<<endl;
  9.      system("pause");
  10.      return 0;  
  11. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    cout<<"2019谷哥人程式體驗營"<<endl;
  7.    cout<<"學生:陳沛頤"<<endl;
  8.    cout<<endl;
  9.     system("pause");   
  10.    return 0;
  11. }
複製代碼

TOP

返回列表