编写一个学生成绩管理程序 c++ 链表
编写一个学生成绩管理程序 c++ 链表
日期:2016-04-21 01:19:05 人气:1
#include
#include
using namespace std;
//================================================================
struct combox{
int num;
int mark;
string name;
combox *next;
};
//===========================================