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

来源:互联网 发布:c语言求数组平均值 编辑:程序博客网 时间:2024/05/08 18:42

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

Time Limit: 1000MS Memory Limit: 65536KB
Submit Statistic

Problem Description

利用类对象数组完成N个学生数据(学号是字符串类型、成绩是整型)的输入、输出。

Input

输入有N+1行:
第一行的整数N表示学生数目;
以下N行是N个学生的数据,每行中第一个是表示学号的字符串,第二个是表示学生成绩的整数。

Output

输出N个学生数据。每个学生的数据占一行。

Example Input

501 8902 7803 5604 9205 76

Example Output

01 8902 7803 5604 9205 76
#include <iostream>#include<string>//***/using namespace std;class Student{private:    string num;///***/    int score;public:    void setStudent()    {        cin >> num >> score;    }    void showStudent()    {        cout << num << " " << score << endl;    }};int main(){    Student a[10010];    int n,i;    cin >> n;    for(i = 0; i < n; i++)    {        a[i].setStudent();    }    for(i = 0; i < n; i++)    {        a[i].showStudent();    }    return 0;}


0 0
原创粉丝点击