- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- char myName [] = "施伯叡";
- char birthday [] = "06/11";
- int height = 139;
- float weight = 37.9;
- cout <<"我的名字是 : "<< myName << endl;
- cout <<"我的生日是 : "<< birthday << endl;
- cout <<"我的身高是 : "<< height << endl;
- cout <<"我的體重是 : "<< weight << endl;
- system("pause");
- return 0;
- }
複製代碼 |