C++ 페어 벡터

Jmnote (토론 | 기여)님의 2023년 12월 20일 (수) 20:16 판 (새 문서: ==개요== ;C++ pair vector ;C++ 페어 벡터 <syntaxhighlight lang='cpp' run> #include <iostream> #include <vector> #include <utility> using namespace std; int main() { vector<...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ pair vector
C++ 페어 벡터
#include <iostream>
#include <vector>
#include <utility>
using namespace std;
int main() {
    vector<pair<int,int>> points;
    points.push_back({2,20});
    points.push_back({4,40});
    points.push_back({1,10});
    points.push_back({3,30});
    
    for(const auto& p: points) {
        cout << p.first << ", " << p.second << endl;
    }
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}