返回列表 發帖
  1. #include<iostream>//標頭檔
  2. #include<cstdlib> //標頭檔
  3. using namespace std;//使用命名空間
  4. int main()
  5. {
  6.   string name ="徐楷恩", school ="陽明國中" ;
  7.   int age =15;
  8.   float h =168.5, w =62.7;
  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

返回列表