学生成绩管理系统C语言不用链表而用结构体数组如何实现

日期:2007-07-25 19:13:14 人气:2

学生成绩管理系统C语言不用链表而用结构体数组如何实现

这是我用的,我同学做的,我也没仔细看,如果可以的话就用这个吧。 #include /*引用库函数*/ #include #include #include typedef struct /*定义结构体数组*/ { char num[10]; /*学号*/ char name[20]; /*姓名*/ int score; /*成绩*/ }Student; Student stu[80]
    A+
热门评论