C++ 벡터 fill()

Jmnote (토론 | 기여)님의 2023년 9월 26일 (화) 21:22 판 (새 문서: ==개요== ;C++ 벡터 fill() <syntaxhighlight lang='cpp' run> #include <iostream> #include <vector> using namespace std; int main() { vector<int> v(5); fill(v.begin(), v.en...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

C++ 벡터 fill()
#include <iostream>
#include <vector>
using namespace std;

int main() {
    vector<int> v(5);
    fill(v.begin(), v.end(), 100);
    for(int el: v) cout << el << ' '; // 100 100 100 100 100 
}

2 같이 보기

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