Explore Connect Documentation
Snippets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <map>
#include <string>
#include <iostream>
using namespace std;
int main() {
  multimap<string,int> names;
  // note the use of curly braces to create a pair
  names.insert({"John", 3});
  names.insert({"Peter", 2});
  names.insert({"Jane", 6});
  names.insert({"Jane", 2});
  for (const auto &x : names) {
    cout << x.first << ": " << x.second << endl;
  }
  
  return 0;
}
Press desired key combination and then press ENTER.