返回列表 發帖
本帖最後由 盧佑恩 於 2017-9-25 19:58 編輯
  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= 168.5,w= 42.3;
  10.    cout <<name<<endl;
  11.    cout <<school<<endl;
  12.    cout <<"今年:" <<age<<" 歲"<<endl;
  13.    cout <<"身高:"<<h<<" 公分"<<endl;
  14.    cout <<"體重:" <<w<<" 公斤"<<endl;
  15.    
  16.    system("pause");
  17.    return 0;
  18. }
複製代碼

TOP

返回列表