用c++编写 建立一个对象数组,内放五个学生的数据(学号、成绩),用指针指向数组首元素,输出第1,3,5学生的数据
时间: 2023-05-16 22:04:27 浏览: 91
详解C++中的对象指针与对象数组
以下是用 C++ 编写建立一个对象数组,内放五个学生的数据(学号、成绩),用指针指向数组首元素,输出第1,3,5学生的数据的代码:
```c++
#include <iostream>
using namespace std;
class Student {
public:
int id;
int score;
};
int main() {
Student students[5] = {{1, 90}, {2, 80}, {3, 70}, {4, 60}, {5, 50}};
Student* ptr = students;
cout << "第1个学生的学号和成绩:" << ptr->id << " " << ptr->score << endl;
ptr += 2;
cout << "第3个学生的学号和成绩:" << ptr->id << " " << ptr->score << endl;
ptr += 2;
cout << "第5个学生的学号和成绩:" << ptr->id << " " << ptr->score << endl;
return 0;
}
```
输出结果为:
```
第1个学生的学号和成绩:1 90
第3个学生的学号和成绩:3 70
第5个学生的学号和成绩:5 50
```
阅读全文