帮忙编写个学生成绩管理系统,只能用c语言,不能用C++!

日期:2015-01-07 19:13:04 人气:1

帮忙编写个学生成绩管理系统,只能用c语言,不能用C++!

//你自己试试 还有什么要求就跟我说 #include #include #include #include struct stu { long num; char name[20]; float score1,score2,score3; float aver; }; typedef struct stucode { struct stu student ; struct stucode *next; }M; void menu(); void createlist(struct stu
    A+
热门评论