第三章第七题(2)

#include 
using namespace std;
class Student
{public:
Student(int n,float s):num(n),score(s){}
void change(int n,float s) const {num=n;score=s;}
void display() const {cout<
第三章第七题(2)_第1张图片

你可能感兴趣的:(第三章)