- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- string name ="沈子晏";
- string school ="明華國中";
- int age =12;
- float w=42.2;
- float h=162.7;
- cout <<"我的大名:"<< name << endl;
- cout <<"就讀:"<< school << endl;
- cout <<"今年:"<< age <<"歲"<< endl;
- cout <<"體重:"<< w <<"公斤"<< endl;
- cout <<"身高:"<< h <<"公分"<< endl;
- system("pause");
- return 0;
- }
複製代碼 |