解题思路:
注意事项:
参考代码:
#include<iostream>
#include<cstring>
using namespace std;
struct student {
string number;
string name;
int score[3];
} stu[100];
int main() {
int N,i=0;
cin>>N;
for(int j=0; j<N; j++) {
cin>>stu[j].number;
cin>>stu[j].name;
while(i<3) {
cin>>stu[j].score[i];
i++;
}
i=0;
}
for(int j=0; j<N; j++) {
cout<<stu[j].number<<",";
cout<<stu[j].name;
while(i<3) {
cout<<","<<stu[j].score[i];
i++;
}
i=0;
cout<<endl;
}
return 0;
}
0.0分
0 人评分
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:636 |
DNA (C语言描述,蓝桥杯)浏览:1653 |
母牛的故事 (C语言代码)浏览:594 |
1025题解浏览:796 |
A+B for Input-Output Practice (V) (C语言代码)浏览:497 |
A+B for Input-Output Practice (VII) (C语言代码)浏览:566 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:650 |
一元一次方程 (C语言代码)浏览:4248 |
交换Easy (C语言代码)浏览:805 |
企业奖金发放 (C语言代码)浏览:2462 |