本帖最後由 李治毅 於 2017-9-26 16:19 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
-
- string name="李治毅";
- string school="福山國小";
- int age=10;
- float h=140.5;
- float w=45.5;
- cout<<"我是"<<name<<endl;
- cout<<"我讀"<<school<<endl;
- cout<<"我今年"<<age<<" 歲"<<endl;
- cout<<"身高:"<<h<<"公分"<<endl;
- cout<<"體重:"<<h<<"公斤"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |