本帖最後由 盧佑恩 於 2017-9-25 19:58 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name="我的大名:盧右恩";
- string school="就讀:龍華國中";
- int age= 9;
- float h= 168.5,w= 42.3;
- cout <<name<<endl;
- cout <<school<<endl;
- cout <<"今年:" <<age<<" 歲"<<endl;
- cout <<"身高:"<<h<<" 公分"<<endl;
- cout <<"體重:" <<w<<" 公斤"<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |