2021-01-05 02:09

[C++] pair

#include<bits/stdc++.h>
using namespace std;
// 선언
pair<int, int> p;
pair<int, int> p2 (1, 1);
// 생성
p = make_pair(1, 1);
p = {1...

댓글