[C++기초]이차원 배열을 범위기반 for문으로 구현하기
1.범위기반 for문을 사용하여 이차원 배열을 출력해보세요. 1 2 3 4 5 6 7 8 9 10 11 12 #include #include using namespace std; int main() { int arr[2][3] = { {1,2,3},{4,5,6} }; } Colored by Color Scripter cs 답 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #include #include using namespace std; int main() { int arr[2][3] = { {1,2,3},{4,5,6} }; for(int(&ln)[3]:arr){ for(int &col:ln){ cout
2022. 1. 12.