学生作业管理系统

#include <stdio.h>#include <stdlib.h>#include <io.h>typedef struct student{ char name[10]; int schoolnumber; int classnumber; float score[10]; struct student *next;} stu,*stupt;stupt st=NULL;//学生信息的头指针stupt qt=NULL;//学生信息的尾指针FILE* fp;//文件指针////////////////////////////////////////...
2011-07-14 00:37 | 阅读 1618 次 | 评论 2 条
浏览66679次