非常的简单
2024-03-24 14:55:54
发布于:北京
4阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
struct stu{
string name; //名字
int tizhong; //体重
}a[1005];
int main(){
int n;
cin >> n;
for(int i=1; i<=n; i++){
cin >> a[i].name >> a[i].tizhong;
}
for(int i=1; i<=n; i++){
//名 体重
cout << a[i].name << "->" <<a[i].tizhong << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个