返回列表 發帖
  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] = "12/24";
  9.     cout <<"我的生日是:"<< birthday << endl;
  10.     char height [6] = "150.7";
  11.     cout <<"我的身高是:"<< height << endl;
  12.     char kg [5] = "78.6";
  13.     cout <<"我的體重是:"<< kg << endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表