好用
#include
#include
#include
typedef struct stu
{
char sz_Name[20]; char sz_ID[11]; char sz_Class[10]; float r_Score[3];
}student;
#define STU_MAXSIZE 60
int i_stuSize;
student stu[STU_MAXSIZE];
/*==========显示主菜单=============*/
void Dis_Main_Menu()
{
printf("\n 学生成绩管理系统 \n"); printf("-----------------------\n"); printf("1:新录入书生成绩 \n"); printf("2:修改学生成绩 \n"); printf("3:学生成绩查寻 \n"); printf("4:平均成绩和排序 \n");