本帖最後由 邱柏揚 於 2016-5-19 12:04 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="邱柏揚";
- string school="福山國中";
- int age=15;
- float h=168.7;
- float w=55.2;
- cout<<"名字:"<<name<<endl;
- cout<<"學校:"<<school<<endl;
- cout<<"今年:"<<age<<"歲"<<endl;
- cout<<"身高:"<<h<<"公分"<<endl;
- cout<<"體重:"<<w<<"公斤"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |