- #include <iostream>
- #include <cstdlib>
- using namespace std;
- int main ()
- {
- char myName[7] = "周雍程";
- cout << "我的名字是:" << myName << endl;
- char birthday[6] = "12/13";
- cout << "我的生日是:" << birthday << endl;
- float height = 135.6;
- cout << "我的身高是:" << height << "公分" << endl;
- char kg[5] = "33.4";
- cout << "我的體重是:" << kg << "公斤" << endl;
-
- system("pause");
- return 0;
- }
複製代碼 |