C++ Primer(第5版) 练习 11.12
练习 11.12 编写程序,读入string和int的序列,将每个string和int存入一个pair中,pair保存在一个vector中。
环境:Linux Ubuntu(云服务器)
工具:vim
文章来源:https://www.toymoban.com/news/detail-846993.html
代码块
/*************************************************************************
> File Name: ex11.12.cpp
> Author:
> Mail:
> Created Time: Wed 03 Apr 2024 10:11:20 PM CST
************************************************************************/
#include<iostream>
#include<iomanip>
#include<utility>
#include<vector>
#include<string>
using namespace std;
int main(){
vector<pair<string, int>> list;
string str;
int num;
cout<<"Enter string and num:"<<endl;
while(cin>>str>>num){
list.push_back(make_pair(str, num));
}
cout<<endl;
cout<<"Result: "<<endl;
for(const auto l : list){
cout<<setw(8)<<left<<l.first<<" "<<l.second<<endl;
}
return 0;
}
运行结果显示如下
文章来源地址https://www.toymoban.com/news/detail-846993.html
到了这里,关于C++ //练习 11.12 编写程序,读入string和int的序列,将每个string和int存入一个pair中,pair保存在一个vector中。的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!