"C++ 페어 벡터"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ pair vector ;C++ 페어 벡터 <syntaxhighlight lang='cpp' run> #include <iostream> #include <vector> #include <utility> using namespace std; int main() { vector<...)
 
24번째 줄: 24번째 줄:
* [[C++ 페어]]
* [[C++ 페어]]
* [[C++ 벡터]]
* [[C++ 벡터]]
* [[C++ 페어 벡터 정렬]]


[[분류: C++ 페어]]
[[분류: C++ 페어]]
[[분류: C++ 벡터]]
[[분류: C++ 벡터]]

2023년 12월 20일 (수) 20:17 판

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 }}