vector<pair<int,int>>v;
vector<vector<pair<int, float>>> vec(10, vector<pair<int, float>>(5, pair<int, float>(0, 0)));
for (int i = 0; i < vec.size(); i++)
{
for (int j = 0; j < vec[i].size(); j++)
{
cout << vec[i][j].first << " ";
cout << vec[i][j].second << " ";
}
cout << endl;
}
Code Example |
---|
Cpp :: getline() |
Cpp :: check even or odd c++ |
Cpp :: c++ check if debug or release visual studio |
Cpp :: How to turn an integer variable into a char c++ |
Cpp :: map in cpp |
Cpp :: system("pause") note working c++ |
Cpp :: long pi in c++ |
Cpp :: c++ template |
Cpp :: accumulate vector c++ |
Cpp :: Finding square root without using sqrt function? |
Cpp :: exception handling class c++ |
Cpp :: cpp execute command |
Cpp :: linux c++ sigint handler |
Cpp :: c++ loop trhought object |
Cpp :: cpp read from file |
Cpp :: 1768. Merge Strings Alternately leetcode solution in c++ |
Cpp :: c++ variable type |
Cpp :: c++ map lookup |
Cpp :: square gcode |
Cpp :: c++ add input in |
Cpp :: c++98 check if character is integer |
Cpp :: c++ generic pointer |
Cpp :: size of unordered_set |
Cpp :: qt file explorer |
Cpp :: c++ function pointer as variable |
Cpp :: insertion overloading in c++ |
Cpp :: long long vs long long int |
Cpp :: queue cpp |
Cpp :: vsearch c program stdlib |
Cpp :: Common elements gfg in c++ |