Đây là code ở trên:
#include <iostream>
#include <map>
using namespace std;
int main ()
{
map<string,int> mp = {
{ "alpha", 10 },
{ "beta", 20 },
{ "gamma", 30 }
};
for (auto& x: mp) {
std::cout << x.first << ": " << x.second << '\n';
}
return 0;
}
Mình chạy trên máy tính thì nó báo lỗi trong hình: