Advertisement
yeskendir_sultanov

C++ map

Mar 28th, 2024
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     map<string, int> mp;
  7.     mp["Birzhan"] = 35;
  8.     mp["Yerlan"] = 13;
  9.     mp["Arman"] = 15;
  10.     mp["Zhangir"] = 23;
  11.    
  12.     if (mp.find("Zhangir") != mp.end()) {
  13.         cout << "YES" << endl;
  14.     } else {
  15.         cout << "NO" << endl;
  16.     }
  17.    
  18.     mp.erase("Zhangir");
  19.    
  20.     if (mp.find("Zhangir") != mp.end()) {
  21.         cout << "YES" << endl;
  22.     } else {
  23.         cout << "NO" << endl;
  24.     }
  25.    
  26.     for (auto x: mp) {
  27.         cout << x.first << " " << x.second << endl;
  28.     }
  29.    
  30.     return 0;
  31. }
  32.  
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement