C++
C++ - map 요소 접근 방법
마루설아
2025. 1. 16. 20:42
for (pair<string, bool> p : m) {
cout << p.first << " " << p.second << endl;
}