#include #include #include using namespace std; typedef map Table; typedef Table::value_type Pare; int main(){ Table table; table.insert(Pare("aaa", '1')); table.insert(Pare("bbb", '2')); table.insert(Pare("ccc", '3')); cout << table["aaa"] << endl; cout << table["bbb"] << endl; cout << table["ccc"] << endl; }