在C++中,以下代码段的输出结果是什么?
#include #include
int main() {
std::map m = {{2, "two"}, {1, "one"}, {3, "three"}};
auto it = m.begin();
std::cout << it->first << " : " << it->second << std::endl;
return 0;}