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