返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      string name="蔡幸融",school="信義國小";
  7.      int age=9;
  8.      float h=140, w=41;
  9.      cout<<"我的大名: "<<name<<endl;
  10.      cout<<"就讀: "<<school<<endl;
  11.      cout<<age<<"歲"<<endl;
  12.      cout<<h<<"公分"<<endl;
  13.      cout<<w<<"公斤"<<endl;
  14.       
  15.      system("pause");   
  16.      return 0;
  17. }   
複製代碼

TOP

返回列表