Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

How to create key value dictionary in C++

1 Answer

0 votes
#include <iostream>
#include <map>

int main() {
    std::map<int, std::string> dict {
        {7, "c++"},
        {3, "c"},
        {1, "c#"},
        {9, "java"}
    };

    dict[2] = "python";

    for (auto& kv: dict) {
        std::cout << kv.first << ": " << kv.second << "\n";
    }
}




/*
run:

1: c#
2: python
3: c
7: c++
9: java

*/

 



answered Dec 10, 2022 by avibootz

Related questions

1 answer 123 views
2 answers 154 views
1 answer 71 views
71 views asked Dec 10, 2022 by avibootz
2 answers 149 views
149 views asked Dec 15, 2022 by avibootz
...