本帖最後由 張郁庭 於 2013-10-12 16:42 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main ()
- {
- char myName [7] = "張郁庭";
- cout << "我的名字是:" << myName << endl;
- char birthday [6] = "10/26";
- cout << "我的生日是:" << birthday << endl;
- float height =180.5;
- cout << "我的身高是:" << height << endl;
- float weight = 30.5;
- cout << "我的體重是:" << weight << endl;
- system ("pause");
- return 0;
- }
-
複製代碼 |