面向对象程序设计上机练习九(对象指针)

来源:互联网 发布:手机内窥镜软件 编辑:程序博客网 时间:2024/05/19 05:39

面向对象程序设计上机练习九(对象指针)

Time Limit: 1000MSMemory Limit: 65536KB
SubmitStatistic

Problem Description

建立对象数组,内放5个学生数据(学号是字符串类型、成绩是整型),设立max函数,用指向对象的指针作函数参数,在max函数中找出5个学生中成绩最高者,并输出其学号和成绩。

Input

输入5个学生数据。

Output

输出5个学生中成绩最高者的学号和成绩。

Example Input

01 8902 7803 5604 9205 76

Example Output

04 92

代码如下:

#include<bits/stdc++.h>using namespace std;class student{  public:      char name[20];      int sore;};student a[5];void max(student *&p){    int i;    int max=a[0].sore;    for(i=0;i<5;i++)    {        if(a[i].sore>max)        {            max=a[i].sore;            p=&a[i];        }    }}int main(){    int i;    for(i=0;i<5;i++)    {        cin>>a[i].name>>a[i].sore;    }    student *p=&a[0];    max(p);    cout<<p->name<<" "<<p->sore<<endl;    return 0;}


阅读全文
0 0
原创粉丝点击