本帖最後由 周雍程 於 2013-10-12 16:51 編輯
- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main()
- {
- char name[7] = "周雍程";
- char dob[6] = "12/13";
- float height = 135.6;
- float weight = 33.4;
- cout << "我的名字是:" << name << endl;
- cout << "我的生日是:" << dob << endl;
- cout << "我的身高是:" << height << "公分" << endl;
- cout << "我的體重是:" << weight << "公斤" << endl;
- system("pause");
- return 0;
- }
複製代碼 |