返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name="董定宇",school="楊民果想";
  7.     int age=12;
  8.     float h=161.5, w=52.1;
  9.     cout<<"佬資教:"<<name<<endl;
  10.     cout<<"讀:"<<school<<endl;
  11.     cout<<"今年: "<<age<<" 歲"<<endl;
  12.     cout<<"身高: "<<h<<" 公里"<<endl;
  13.     cout<<"體重: "<<w<<"公噸"<<endl;
  14.     system ("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表