加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

C++之类和对象课后习题简单实例

发布时间:2020-12-16 05:23:37 所属栏目:百科 来源:网络整理
导读:建立一个对象数组,内放5个学生的(学号,成绩),设立一个函数max,用指向对象的指针作函数参数,在max函数中找出5个学生的最高成绩者,并输出其学号。 #includeiostreamusing namespace std;class Student{public: Student(int=10,int=0); int number; int

建立一个对象数组,内放5个学生的(学号,成绩),设立一个函数max,用指向对象的指针作函数参数,在max函数中找出5个学生的最高成绩者,并输出其学号。

#include<iostream>
using namespace std;

class Student
{public:
  Student(int=10,int=0);
  int number;
  int score;
  void display();
};

Student::Student(int num,int sco):number(num),score(sco){
}

void Student::display()
{
  cout<<number<<" "<<score<<endl;
}

void max(Student *p)
{
  int maxi=p[0].score;
  int temp=0;
  for(int i=1;i<5;i++)
  if(p[i].score>maxi)
  {
  maxi=p[i].score;
  temp=i;
  }
  cout<<p[temp].number<<" "<<maxi<<endl;
}

int main()
{
  Student stu[5]={
Student{1001,90},Student{1002,80},Student{1003,99},Student{1004,84},Student{1005,85}
};
  Student *p=&stu[0];
   max(p);
  return 0;
}

以上这篇C++之类和对象课后习题简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读