彭焱


私信TA

用户名:uq_38606523487

访问量:145

签 名:

等  级
排  名 6954
经  验 1361
参赛次数 0
文章发表 3
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include <bits/stdc++.h>

using namespace std;


int main() {

struct student {

string Xuehao;

string Name;

int score[3];

} student[1000];

int N;

cin >> N;

for (int i = 0; i < N; i++) {

cin >> student[i].Xuehao >> student[i].Name >> student[i].score[0] >> student[i].score[1] >> student[i].score[2];

}

for (int i = 0; i < N; i++) {

cout << student[i].Xuehao << "," << student[i].Name << "," << student[i].score[0] << "," << student[i].score[1] << ","

     <<

     student[i].score[2] << endl;

}

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »