返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="王宥凱";
  7.     string school="鳳新高中";
  8.     int age=15;
  9.     float height=178.2;
  10.     float weight=50.0;
  11.     cout<<"我的大名:"<<name<<endl;
  12.     cout<<"學校:"<<school<<endl;
  13.     cout<<"年齡:"<<age<<"歲"<<endl;
  14.     cout<<"身高:"<<height<<"cm"<<endl;
  15.     cout<<"體重:"<<weight<<"kg"<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

返回列表