Home > Back-end >  Please run code (CTRL Alt n), f5, CTRL f5 what's the difference
Please run code (CTRL Alt n), f5, CTRL f5 what's the difference

Time:02-13


# include
# include
using namespace std;
Int main ()
{
Map Mymap;
Mymap. Insert (pair (' a ', 1));
Mymap. Insert (map : : value_type (" b ", 2));
Mymap [' c ']=3;
//three methods insert
Map : : iterator it;
For (it=mymap. The begin (); it!=mymap. End (); It++)
Printf (" [% c, % d], "it - & gt; First, it - & gt; Second);
Printf (" \ n ");
}

The first is the run code as a result, the second is the f5, CTRL + f5 results