- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main(){
- string name="羅暐傑", school="高雄美國學校";
- int age=13;
- float height= 172.7, weight=57;
- cout<<"我的大名: "<<name<<endl;
- cout<<"就讀: "<<school<<endl;
- cout<<"今年: "<<age<<"歲"<<endl;
- cout<<"身高: "<<height<<"公分"<<endl;
- cout<<"體重: "<<weight<<"公斤"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |