题目来源:http://blog.csdn.net/sxhelijian/article/details/8723847
虽然自己有一些C/C++编程的基础,通过编写一些小程序还是能让我对语言的应用有更深的了解。“读万卷书,不如行万里路”,有时候
这道题比较基础,可是自己暂时性的不知道该如何下手,期间还求助了我的同学,看了参考的答案之后,觉得自己确实水平**。希望自己能不断进步吧。
【项目4】设计一个学生类Student,包括学号(num)和成绩(score)。建立一个对象数组,通过初始化,设置5个学生的数据,要求:
(1)用指针指向数组首元素,输出第1、3、5个学生的信息;(2)设计一个函数int max(Student *arr);,用指向对象的指针作函数参数,在max函数中找出5个学生中成绩最高者,并返回值其学号。
#include <iostream>
using namespace std;
class Student
{
public:
Student(int n,double s):num(n),score(s){}
void display();
int getNum(){return num;}
double getScore(){return score;}
private:
int num;
double score;
};
void Student::display()
{
cout<<num<<" "<<score<<endl;
}
int max(Student *arr);
int main()