- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="王宥凱";
- string school="鳳新高中";
- int age=15;
- float height=178.2;
- float weight=50.0;
- cout<<"我的大名:"<<name<<endl;
- cout<<"學校:"<<school<<endl;
- cout<<"年齡:"<<age<<"歲"<<endl;
- cout<<"身高:"<<height<<"cm"<<endl;
- cout<<"體重:"<<weight<<"kg"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |