返回列表 發帖
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    char n [7] =  "張郁偵";
  7.    char b [5] =  "10/8";
  8.    float h= 167.3;
  9.    float w= 45;
  10.    cout << "我的名字是:" << n << endl;
  11.    cout << "我的生日是:" << b << endl;
  12.    cout << "我的身高是:" << h << endl;
  13.    cout << "我的體重是:" << w << endl;
  14.    system ("pause");
  15.    return 0;   
  16. }
複製代碼

TOP

返回列表