c++ 输出map每个元素的值
展开全部
#include <map>
#include <string>
#include <iostream>
using namespace std;
int main() {
map<string, int> mp; // {}
mp["a"] = 1; // {"a"->1}
mp["b"] = 2; // {"a"->1, "b"->2}
mp["c"] = 1; // {"a"->1, "b"->2, "c"->1}
for (map<string, int>::iterator it = mp.begin(); it != mp.end(); ++it) {
cout << it->first << " is in map " << it->second << endl;
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询