跪求C++:设计和实现简单的学生成绩管理程序(用链表实现),网上的程序太复杂了,谁给个简单的

日期:2013-06-14 18:06:59 人气:1

跪求C++:设计和实现简单的学生成绩管理程序(用链表实现),网上的程序太复杂了,谁给个简单的

#include #include using namespace std;#define MAX 4struct Student { int stuId;//成绩排名 char stuName[20];//姓名 double stuScore[MAX];//成绩 double stuSum;//总成绩 Student *next;//指向下一节点};class StudentManager&#
    A+
热门评论