c++通过指针输出对象的数组数据

#include
using namespace std;
//------------------此处为类的声明----------------------//
class Student{ //声明class类
int n_id,n_score; //定义两个int型Student类的对象
//------------------此处为类的声明-------------------------//
public://将该类声明为共有属性,类似地,还可以声明为private(私有的),protected(保护的)
Student(){}//类的构造函数,与类名相同,无参数,无返回值
Student(int id,int score)//构造函数的重载,和上面的一样,只不过多个两个形式参数
{
n_id=id;//将重载构造函数的形式参数赋值给Student类的对象
n_score=score;
}
void Get_date(int a, int b)//声明Get_data函数
{
n_id=a;//将输入的数值传递给类的对象
n_score=b;
}
void show(){//声明show函数单纯的用于数值的输出

    cout<

};
int main(int argc, const char * argv[]) {
int i=0,x,y;//定义三个int型变量
Student S[5];//定义对象的数组
cout<<“请输入五组数据,中间要有空格:”< for (i=0; i<5; i++) {
cin>>x>>y;
S[i].Get_date(x, y);//利用定义的数组进行Get_data函数值的接收
}
cout<<“成功输出的数据是:”< for (i=0; i<5; i++) {
S[i].show();
}
return 0;}
输出:
请输入五组数据,中间要有空格:
1 100
2 99
3 98
4 97
5 96
成功输出的数据是:
1 100
2 99
3 98
4 97
5 96
Program ended with exit code: 0

你可能感兴趣的:(c++,c++)