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

 
2번째 줄: 2번째 줄:
;C++ 벡터 초기값 채우기
;C++ 벡터 초기값 채우기


==모두 0==
==모두 같은 값==
===모두 0===
<syntaxhighlight lang='cpp' run>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
24번째 줄: 25번째 줄:
</syntaxhighlight>
</syntaxhighlight>


==모두 100==
===모두 100===
<syntaxhighlight lang='cpp' run>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>

2023년 10월 22일 (일) 11:58 기준 최신판

1 개요[ | ]

C++ 벡터 초기값 채우기

2 모두 같은 값[ | ]

2.1 모두 0[ | ]

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

2.2 모두 100[ | ]

#include <iostream>
#include <vector>
using namespace std;

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

3 각각 지정[ | ]

#include <iostream>
#include <vector>
using namespace std;

int main() {
    vector<int> v = {1, 2, 3, 4, 5};
    for(int el: v) cout << el << ' '; // 1 2 3 4 5 
}

4 같이 보기[ | ]

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