返回列表 發帖
本帖最後由 張郁庭 於 2013-10-12 16:42 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main ()
  5. {
  6.       char myName [7] = "張郁庭";
  7.       cout << "我的名字是:" << myName << endl;
  8.       char birthday [6] = "10/26";
  9.       cout << "我的生日是:" << birthday << endl;
  10.       float height =180.5;
  11.       cout << "我的身高是:" << height << endl;
  12.       float weight = 30.5;
  13.       cout << "我的體重是:" << weight << endl;
  14.     system ("pause");
  15.     return 0;
  16. }
  17.         
複製代碼

TOP

返回列表