学生基本信息管理系统C++源代码
学生基本信息管理系统C++源代码
日期:2017-09-02 18:44:20 人气:1
#include #include #include using namespace std;typedef struct student { unsigned m_id; string m_name; unsigned m_age; string m_sex; string m_address; string m_contact; string m_dormitory; struct student *m_next;}student;class CStudent {private : student *