/*程序名称:学生成绩管理系统*/
/*程序设计者:致远 */
/*设计时间:2013-3-15 */
/**************************************************************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define N 50
struct student
{
char num[15];
char...