C++班级成员信息管理
#include
#include
#include
#include
typedefstructStudent//学生信息
{
signedshortid;
charname[11];
charsex[7];
signedshortage;
chartelNum[16];
}Student;
typedefstructNode
{
Studentdata;
Node*next;
}Node;
staticNode*begin=NULL;/
下载地址
用户评论