- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name = "賈伯斯";
- string English = "Steven Paul Jobs";
- int age = 56;
- string born = "1955年2月24日";
- cout << "他的大名:" << name << endl;
- cout << "他的大名:" << English << endl;
- cout << "今年:" << age << "歲" << endl;
- cout << "出生:" << born << "公分" << endl;
- system("pause");
- return 0;
- }
複製代碼 |