返回列表 發帖
本帖最後由 李治毅 於 2017-9-26 16:19 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.   string name="李治毅";
  8.   string school="福山國小";
  9.   int age=10;
  10.   float h=140.5;
  11.   float w=45.5;
  12.   cout<<"我是"<<name<<endl;
  13.   cout<<"我讀"<<school<<endl;
  14.   cout<<"我今年"<<age<<" 歲"<<endl;
  15.   cout<<"身高:"<<h<<"公分"<<endl;
  16.   cout<<"體重:"<<h<<"公斤"<<endl;
  17.   system("pause");
  18.   return 0;
  19. }
複製代碼

TOP

返回列表