實驗三 用順序表實現學生成績管理系統

#include<iostream> using namespace std; class Student { private: char *name[5]; int length; float grade[5]; public: Student(){length=0;} Student(char *n[],float g[],int l); ~Student(){} void ins
相關文章
相關標籤/搜索