for循环真的是——泰裤辣,一遍就过
2023-11-25 21:35:49
发布于:北京
48阅读
0回复
0点赞
嗨害嗨
#include <iostream>
#include <cstdio>
using namespace std;
struct node{
int id;
string name, j, d;
} a[15];
int main(){
int n;
cin >> n;
int id, x;
string s;
for(int i = 1; i <= n * 3; i++){
cin >> id >> x >> s;
if(x == 2) a[id].name = s;
else if(x == 3) a[id].j = s;
else a[id].d = s;
}for(int i = 1; i <= n; i++){
cout << i << ' ' << a[i].name << ' ' << a[i].j << ' ' << a[i].d << endl;
}
return 0;
}
全部评论 2
666
2023-11-25 来自 北京
0999
2023-11-25 来自 北京
0
有帮助,赞一个