- 12
- 0
- 约1.78万字
- 约 20页
- 2017-08-09 发布于湖北
- 举报
C学生学籍管理系统程序
#includestdio.h ??
#includestring.h ??
#includestdlib.h ??
#includeconio.h ??
#define?N?100?/*存储100个学生的学籍信息*/ ??
int?flag;?/*标记是否登录*/??
struct?date?/*出生日期*/??
{??
????int?year;??
????int?month;??
????int?day;??
};??
struct?student??
{??
????char?num[20];/*学号*/??
????char?name[25];/*姓名*/??
????char?sex[10];/*性别*/??
????struct?date?birthday;/*出生年月*/??
????int?age;/*年龄*/??
????char?addr[50];/*籍贯*/??
????char?dept[50];?/*系别*/??
????char?major[30];?/*专业*/??
????char?classs[30];?/*班级*/??
????char?phone[20];/*电话*/??
}stu[N];??
??
void?login()?/*登录*/??
{??
????void?menu();??
????system(cls);??
????if(
原创力文档

文档评论(0)