返回列表 發帖
  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;
複製代碼

TOP

返回列表