单链表设计一个学生成绩系统

#include<iostream.h> struct Node {     int number; char* name; char* Class; float math_grade; Node *next; }; class Student { public: Student(); Student(char*n[],char*c[],int num[],float m[],int l); ~S
相关文章
相关标签/搜索