返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string name = "賈伯斯";
  7.     string English = "Steven Paul Jobs";
  8.     int age = 56;
  9.     string born = "1955年2月24日";
  10.     cout << "他的大名:" << name << endl;
  11.     cout << "他的大名:" << English << endl;
  12.     cout << "今年:" << age << "歲" << endl;
  13.     cout << "出生:" << born << "公分" << endl;
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表