65,211
社区成员
发帖
与我相关
我的任务
分享
#include <iostream>
#include <vector>
#include <utility>
#include <string>
using namespace std;
void main()
{
vector<pair<string,int>> pvc;
for(int i=0;i<5;i++)
{
string str;
int ntemp;
cin>>str>>ntemp;
pvc.push_back(make_pair(str,ntemp));
}
}