Advertisement
Josif_tepe

Untitled

Jun 8th, 2024
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. #include <iostream>
  2. #include <map>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.   map<string, int> mapa;
  8.   mapa["Josif"] = 22;
  9.   mapa["Kiko"] = 18;
  10.   mapa["Stefan"] = 29;
  11.  
  12.  
  13.   for(auto it = mapa.begin(); it != mapa.end(); it++) {
  14.       cout << it->first << " " << it->second << endl;
  15.   }  
  16.     return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement