[C++] pair

2021-01-05
  • C++
#include<bits/stdc++.h>
using namespace std;

// 선언
pair<int, int> p;
pair<int, int> p2 (1, 1);

// 생성
p = make_pair(1, 1);
p = {1, 1};

// 조회
int first = p.first;
int second = p.second;
Profile picture

2yeseul

트리플에서 백엔드 개발을 맡고 있습니다. 무한 삽질을 기록합니다. ⚒️