Content deleted Content added
Cybercobra (talk | contribs) →Sample Code: retitle / simplify structure |
→Example: usage of using namespace std is discouraged |
||
Line 32:
#include <string>
#include <unordered_map>
int main()
{
std::unordered_map<std::string, int> months;
months["january"] = 31;
months["february"] = 28;
|