C++ 배열 fill()

Jmnote (토론 | 기여)님의 2023년 9월 24일 (일) 13:18 판 (→‎2차원 배열)

1 개요

C++ 배열 초기값 채우기
C++ 배열 초기값 0으로 채우기
C++ 배열 초기값 동일한 값으로 채우기
C++ 배열 초기값 모두 같은 값으로 채우기
#include <iostream>
using namespace std;
int main() {
    int A[10];
    for(int i=0; i<10; i++) cout << A[i] << ' '; // 0 0 2111058512 22062 0 0 2111058048 22062 1362695888 32764 
}
#include <iostream>
using namespace std;
int main() {
    int A[3][4];
    for(int i=0; i<3; i++) {
        for(int j=0; j<4; j++) cout << A[i][j] << ' ';
        cout << endl;
    }
}

2 1차원 배열

#include <iostream>
using namespace std;
int main() {
    int A[10] = {0};
    for(int i=0; i<10; i++) cout << A[i] << ' '; // 0 0 0 0 0 0 0 0 0 0 
}
#include <iostream>
using namespace std;
int main() {
    int A[10];
    fill(A, A+10, 0);
    for(int i=0; i<10; i++) cout << A[i] << ' '; // 0 0 0 0 0 0 0 0 0 0 
}

3 2차원 배열

#include <iostream>
using namespace std;
int main() {
    int A[3][4] = {0};
    for(int i=0; i<3; i++) {
        for(int j=0; j<4; j++) cout << A[i][j] << ' ';
        cout << endl;
    }
}
#include <iostream>
using namespace std;
int main() {
    int A[3][4];
    fill(A[0], A[0]+12, 0);
    for(int i=0; i<3; i++) {
        for(int j=0; j<4; j++) cout << A[i][j] << ' ';
        cout << endl;
    }
}

4 같이 보기

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