- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="高允懋";
- string school="龍華國中";
- int age=12;
- float high=153.5;
- float weight=36.5;
- cout<<"我的大名: "<<name<<endl;
- cout<<"就讀: "<<school<<endl;
- cout<<"今年: "<<age<<" 歲"<<endl;
- cout<<"身高: "<<high<<" 公分"<<endl;
- cout<<"體重: "<<weight<<" 公斤"<<endl;
- system("pause");
- return 0 ;
- }
複製代碼 |