- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="洪浚恩";
- string school="五權國小";
- int age=9;
- float high=157.5;
- float weight=54;
- cout<<"我的大名:"<<name<<endl;
- cout<<"就讀:"<<school<<endl;
- cout<<"年齡"<<age<<"歲"<<endl;
- cout<<"身高:"<<high<<"cm"<<endl;
- cout<<"體重:"<<weight<<"kg"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |