コード例 #1
0
ファイル: 9.4.3.cpp プロジェクト: zxjcarrot/cpp-homework
int main () {
	Student stud(101, 78.5);
	Student * p = &stud;
	p->display();
	p->change(101, 80.5);
	p->display();

	return 0;
}
コード例 #2
0
ファイル: test1.cpp プロジェクト: if-zz/CPlusLearn
void fun(Student &s){
	s.display();
	s.change(120,98.5);
	s.display();
};