发布网友 发布时间:2022-04-23 17:52
共2个回答
热心网友 时间:2023-10-11 20:21
#include<string>
using namespace std;
typedef struct
{
int year;
int month;
int day;
}Birthday;
typedef enum
{
MALE = 0,
FEMALE = 1
}SEX;
class student
{
public:
student();
~student();
private:
string name;
SEX sex;
Birthday birth;
string tel;
};
热心网友 时间:2023-10-11 20:21
5后面加个0
我立马给你写