返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="郭又瑄";
  7.     string school="獅湖國小";
  8.     int age=11;
  9.     float h=179.9;
  10.     float w=100.1;
  11.     cout<<"我的大名:"<<name<<endl;
  12.     cout<<"就讀:"<<school<<endl;
  13.     cout<<"年紀:"<<age<<"years old"<<endl;
  14.     cout<<"身高:"<<h<<"cm"<<endl;
  15.     cout<<"體重:"<<w<<"kg"<<endl;
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

返回列表