- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="洪振庭";
- string school="龍華國小";
- int age=12;
- float height=???;
- float weight=???;
- cout<<"我姓名: "<<name<<endl;
- cout<<"就讀: "<<school<<endl;
- cout<<"今年: "<<age<<" 歲"<<endl;
- cout<<"身高: "<<height<<" 公分"<<endl;
- cout<<"體重: "<<weight<<" 公斤"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |