来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/12 07:15:32
求c++ pair 用法的小程序
头文件 #include
pair next_auth;
string first,last;
while(cin >> first >> last){
next_auth = make_pair(first,last);
}
或者
pair next_auth;
while(cin >> next_auth.first >> next_auth.second)
{ }