"C++ 벡터 초기값 채우기"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ 벡터 초기값 채우기 <syntaxhighlight lang='cpp' run> #include <iostream> #include <vector> using namespace std; int main() { vector<int> v(5); fill(v....)
 
2번째 줄: 2번째 줄:
;C++ 벡터 초기값 채우기
;C++ 벡터 초기값 채우기


<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <vector>
using namespace std;
int main() {
    vector<int> v(5);
    for(int el: v) cout << el << ' '; // 0 0 0 0 0
}
</syntaxhighlight>
<syntaxhighlight lang='cpp' run>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>

2023년 9월 26일 (화) 21:25 판

1 개요

C++ 벡터 초기값 채우기
#include <iostream>
#include <vector>
using namespace std;

int main() {
    vector<int> v(5);
    for(int el: v) cout << el << ' '; // 0 0 0 0 0 
}
#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 }}