C++第四章

2、建立一个对象数组,内放6个学生的数据(学号、成绩),用指针指向数组首元素,输出246个同学的数据。

#include <iostream>
using namespace std;
class Student{
public:void get_student();
    void display();
private:int num;int score;
};
void Student::get_student(){
 cin>>num>>score;
}
void Student::display()
{cout<<"num="<<num<<"\t"
     <<"score="<<score<<endl;
}

int main(){
	int i;
	Student *p;
	p=new Student[6];
	Student *t = p;
for(i=0;i<6;i++)
{
 cout<<"请输入第"<<i+1<<"名学号和成绩:";
 p->get_student();
 p++;
}
cout<<"输出第2.4.6个学生的数据:\n";
p=t;
 p++;
for(i=0;i<6;i=i+2)
{
 p->display();
 p=p+2;
}
delete []p; 
delete []t;
return 0;
}

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

#include <iostream>
using namespace std;
 
class Student
{
    public:
    Student(int = 0,int = 0);
    void display();
    void max(Student * ,int);     
    private:
    int no;
    int score;
};
 
Student::Student(int no,int score):no(no),score(score){}
void Student::display()
{
    cout <<"no:" << no << " score:" << score << endl;
}
 
void Student::max(Student * stu,int n)
{
     Student *max_stu = stu;  
 
     
     for (int i = 0; i < n; i++)
     {
         if ((*stu).score > (*max_stu).score)
         {
             max_stu = stu;
         } 
         stu++;
     } 
     
     (*max_stu).display(); 
}
 
 
int main()
{
Student stu[6] = 
    {
        Student(1,100),
        Student(2,200),
        Student(3,300),
        Student(4,400),
        Student(5,500),
        Student(6,450)
    };
    
    Student *p;
 
    p = stu; 
    (*p).max(p,6);  
 
    system("pause");
    return 0;
}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值