返回列表 發帖
本帖最後由 邱柏揚 於 2016-5-19 12:04 編輯
  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 h=168.7;
  10.      float w=55.2;
  11.      cout<<"名字:"<<name<<endl;
  12.      cout<<"學校:"<<school<<endl;
  13.      cout<<"今年:"<<age<<"歲"<<endl;
  14.      cout<<"身高:"<<h<<"公分"<<endl;
  15.      cout<<"體重:"<<w<<"公斤"<<endl;
  16.      system("pause");
  17.      return 0;
  18. }
複製代碼

TOP

返回列表