#include<iostream>
#include<map>
using namespace std;
struct node
{
    int num;
    char name[50];
    int score;
};
//201755555555
int main()
{
    map<int,node>mp[500];
    mp[55][201755555555]=node{20147,"sds",45};
    cout<<mp[5][201755555555].score;
}

  

相关文章:

  • 2021-08-27
  • 2021-11-18
  • 2021-09-16
  • 2021-07-02
  • 2021-09-16
  • 2021-07-16
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-03
  • 2021-03-31
  • 2022-12-23
  • 2021-09-03
  • 2021-07-13
  • 2022-12-23
相关资源
相似解决方案