参考题解
2024-11-18 19:39:21
发布于:浙江
1阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
struct node{
string name;
int jp;
int yp;
int tp;
int zs;
}a[1000];
int main(){
int n;
cin >> n;
for(int i = 0;i < n;i++){
cin >> a[i].name >> a[i].jp >> a[i].yp >> a[i].tp;
a[i].zs = a[i].jp + a[i].yp + a[i].tp;
}
for(int i = 0;i < n;i++){
cout << a[i].name << " " << a[i].jp << " " << a[i].yp << " " << a[i].tp << " " << a[i].zs << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个