返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

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

TOP

返回列表