用C++程序编写,用类,对象编写程序输入和存储100个学生的个人信息:姓名、性别、出生年月日、联系电话。

发布网友 发布时间: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
我立马给你写

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com