郝20221128


私信TA

用户名:dotcpp0653600

访问量:2406

签 名:

等  级
排  名 469
经  验 4720
参赛次数 16
文章发表 42
年  龄 98
在职情况 教师
学  校 上海邮电大学
专  业 计算机程序开发

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>
#include<string>
using namespace std;
//创建学生结构体
struct Student
{
    string Id;
    string Name;
    int Ane_score;
    int Two_score;
    int Three_score;
};
//用于输入学生数据
void input(Student student[],int N)
{
    int i;
    for(i=0;i<N;i++)
    {
        cin>>student[i].Id;
        cin>>student[i].Name;
        cin>>student[i].Ane_score;
        cin>>student[i].Two_score;
        cin>>student[i].Three_score;
    }
}
//用于输出学生的数据
void print(Student student[],int N)
{
    int i;
    for(i=0;i<N;i++)
    {
        cout<<student[i].Id<<","
            <<student[i].Name<<","
            <<student[i].Ane_score<<","
            <<student[i].Two_score<<","
            <<student[i].Three_score<<endl;
    }
}
int main()
{
    int N;
    cin>>N;
    Student student[N];
    input(student,N);
    print(student,N);
    return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »