STL Pair

We use STL pair to store two values together. #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); pair p; pair f; pair g; // To make a vector pair int n; cin >> n; vector v(n); for(int i = 0 ; i < n ; i++){ cin >> v[i].first >> v[i].second ; } for(int i = 0 ; i < n ; i++){ cout

Feb 13, 2025 - 23:18
 0
STL Pair

We use STL pair to store two values together.

#include 
using namespace std;

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);
    pair p;
    pair f;
    pair g;
    // To make a vector pair
    int n;
    cin >> n;
    vector> v(n);
    for(int i = 0 ; i < n ; i++){
        cin >> v[i].first >> v[i].second ;
    }
    for(int i = 0 ; i < n ; i++){
        cout << v[i].first << " " << v[i].second << endl ;
    }
    p = make_pair(2, 3);
    f = make_pair("Mujahida", 3);
    cout << f.first << endl;
    cout << f.second << endl;

    cout << p.first << endl;

    cout << p.second << endl;
}