#include<iostream>
class Student{
public:
Student(int num,int sco);
int getScore();
private:
int number;
int score;
};
Student::Student(int num,int sco)
{
number=num;
score=sco;
}
int Student::getScore()
{
return score;
}
void max(Student *stu) &