返回列表 發帖

自我介紹

本帖最後由 tonyh 於 2015-3-13 21:28 編輯

試宣告五個變數來裝你的個人資料, 分別為2個字串(string)變數, 1個整數(int)變數, 2個浮點數(float)變數, 完成如下的執行畫面:

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="黃國穎", school="愛國國小";
  7.     int age=9;
  8.     float h=138.6, w=27.5;
  9.     cout<<"我的大名: "<<name<<endl;
  10.     cout<<"就讀: "<<school<<endl;
  11.     cout<<"今年: "<<age<<" 歲"<<endl;
  12.     cout<<"身高: "<<h<<" 公分"<<endl;
  13.     cout<<"體重: "<<w<<" 公斤"<<endl;
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. main()
  5. {
  6.       string name="沈子耕", school="台灣大學";
  7.       int age=15, n=180;
  8.       float h=179.9 , w= 70;
  9.       cout<<"我的大名: "<<name<<endl;
  10.       cout<<"就讀: "<<school<<endl;
  11.       cout<<"今年: "<<age<<" 歲"<<endl;
  12.       cout<<"長度: "<<h<< " 公分"<<endl;
  13.       cout<<"體重: "<<w<<" 公斤"<<endl;
  14.       cout<<"智商: "<<n<<endl;
  15. system("pause");
  16. return 0;
  17.       }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   string name="林侑成" ,school="新莊國小";
  7.   int age=9;
  8.   float h=148,w=32;
  9.   cout<<"我的大名"<<name<<endl;
  10.   cout<<"學校"<<school<<endl;
  11.   cout<<"年齡"<<age<<" 歲"<<endl;
  12.   cout<<"身高"<<h<<" 公分"<<endl;
  13.   cout<<"體重"<<w<<" 公斤"<<endl;
  14.   system("pause");
  15.   return 0;
  16. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="陳思惟";
  7.     string school="博愛";
  8.     int age=9;
  9.     float h=148;
  10.     string w="?";
  11.     cout<<"姓名:"<<name<<endl;
  12.     cout<<"就讀學校:"<<school<<"國小"<<endl;
  13.     cout<<"年齡:"<<age<<"歲"<<endl;
  14.     cout<<"身高:"<<h<<"cm"<<endl;
  15.     cout<<"體重:"<<w<<"kg"<<endl;
  16.    
  17.     system("pause");
  18.     return 0;   
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="曾挺桂" , school="左營國中";
  7.     int age=13;
  8.     float h=178.6 ,w=58.4;
  9.     cout<<"我的大名:"<<name<<endl;
  10.     cout<<"就讀:"<<school<<endl;
  11.     cout<<"今年:"<<age<<"歲"<<endl;
  12.     cout<<"身高:"<<h<<"公分"<<endl;
  13.     cout<<"體重:"<<w<<"公斤"<<endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表