文章
6
粉丝
72
获赞
0
访问
3.3k
#include <iostream>
#include <map>
#include <string.h>
using namespace std;
struct student {
char id[10], name[10], sex[10],age[10];
};
student stu[1000];
map<string, student>m;
int main()
{
int n;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> stu[i].id >> stu[i].name >> stu[i].sex >> stu[i].age;
m[stu[i].id] = stu[i];
}
int q;
cin >> q;
for (int i = 0; i < q; i++)
{
char f[10];
cin >> f;
if ((m.find(f)) != m.end())
{
&n...
登录后发布评论
no answer的引号