返回列表 發帖
本帖最後由 盧佑芯 於 2017-9-25 19:59 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   string name = "盧右芯";
  7.   string school = "龍華國中";
  8.   int age = 14;
  9.   float w = 49.5, h = 161.3;
  10.   
  11. cout<<"我的大名"<<name<<endl;
  12. cout<<"就讀"<<school<<endl;
  13. cout<<"年齡:"<<age<<"歲"<<endl;
  14. cout<<"體重:"<<w<<"公斤"<<endl;
  15. cout<<"身高:"<<h<<"公分"<<endl;

  16.   system("pause");
  17.   return 0;   
  18. }
複製代碼

TOP

返回列表