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