服务器之家

服务器之家 > 正文

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

时间:2021-04-08 15:16     来源/作者:jingxian

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#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++和对象课后习题简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部