_
学生成绩统计管理系统
C语言数据结构课程作品
指导老师: 学生: 学号: 班级:
_
一、代码
#include \
#include
struct grade {
int score;
struct grade *next;
}; /*定义成绩的结构*/
struct address{ char stu_num[4]; /*学号*/ char hname[10]; /*性别*/ char ename[20]; /*姓名*/ char depart[30]; /*系别*/
_
char paddress[30]; /*地址*/ char phone[13] /*联系电话*/; struct grade *head; struct address *next; } ;
void loaddata (struct address **had); void printm (struct address *head);
struct address * seek (struct address *head); void revise (struct address *hp); void delate (struct address **head); void saveda (struct address *tou ); void addnew (struct address **had ); void moveg (int i,struct grade **move); void gotoxy(int x,int y);
void sortp(struct address **head);
int main ( void ) {
char ch; int c;
C语言知识学习数据库-学生成绩统计管理组织系统



