返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="劉愷恩",school="正興國中";
  7.     int age=14;
  8.     float height=164.4,weight=48.9;
  9.     cout<<"我的名字:"<<name<<endl;
  10.     cout<<"就讀:"<<school<<endl;
  11.     cout<<"今年:"<<age<<" 歲"<<endl;
  12.     cout<<"身高:"<<height<<" 公分"<<endl;
  13.     cout<<"體重:"<<weight<<" 公斤"<<endl;   
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

TOP

返回列表