sdut oj面向对象程序设计上机练习八(对象数组)

题目链接:点击打开链接 

面向对象程序设计上机练习八(对象数组)
Time Limit: 1000MS Memory Limit: 65536KB
Problem Description
利用类对象数组完成N个学生数据(学号是字符串类型、成绩是整型)的输入、输出。
Input
输入有N+1行:
第一行的整数N表示学生数目;
以下N行是N个学生的数据,每行中第一个是表示学号的字符串,第二个是表示学生成绩的整数。
Output
输出N个学生数据。每个学生的数据占一行。
Example Input

5
01 89
02 78
03 56
04 92
05 76

Example Output

01 89
02 78
03 56
04 92
05 76

Hint
 
Author
zlh


代码实现:

#include 
using namespace std;

class stud
{
private:
    string name;
    int grad;
public:

    void set(string nam,int gra)
    {
        name = nam;
        grad = gra;
    }
    void display()
    {
        cout<>n;
    stud A[140];
    for(int i = 0;i < n;i++)
    {
        cin>>name1>>grad1;
        A[i].set(name1,grad1);
    }
    for(int i = 0;i < n;i++)
        A[i].display();
    return 0;
}


你可能感兴趣的:(C++)