摘要: #include#include#include#include#define MAX 2000struct Student{ int no; /*学号*/ char name[8]; /*姓名*/ char sex; /*性别*/ char phone[8];/*联系电话*/ int mark[4]; /*语文、数学、外语、考试平均成绩*/ };int total; /*总人数*/char password[20];/*密码*/struct Student student[MAX];/***************... 阅读全文
posted @ 2013-07-09 08:27 蓬莱仙羽 阅读(603) 评论(2) 推荐(0)