用到了map映射,map中关键字为int学号,映射值为string其他信息;本题示例的输出格式与测试的输出格式不同,有点坑,输出时%d前不需要加0才能通过 #include <map> #include <cstdio> #include <string> #include <iostream> using namespace std; int main(){ int n,m; map<int,string> mymap;//定义要使用的map,学号为关键字,其他信息为映射值 while(scanf("%d...