本帖最後由 蔡季樺 於 2015-9-17 20:30 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int age=56,money=83,height=188,weight=59;
- string born="1955年2月24日",dead="2011年10月5日(56歲)",name="賈伯斯";
- string Englishname="Steve Jobs",causeofdeath="轉移性胰腺神經內分泌腫瘤";
- cout<<"他的大名:"<<name<<endl;
- cout<<"他的英文大名:"<<Englishname<<endl;
- cout<<"他的身高:"<<height<<"公分"<<endl;
- cout<<"他的體重:"<<weight<<"公斤"<<endl;
- cout<<"他的年齡:"<<age<<"歲"<<endl;
- cout<<"他的淨資產:"<<money<<"億"<<endl;
- cout<<"生日:"<<born<<endl;
- cout<<"逝世:"<<dead<<endl;
- cout<<"死因:"<<causeofdeath<<endl;
- system("pause");
- return 0;
- }
複製代碼 |