[2차원 배열] 2566번 - 최댓값 (c++) https://www.acmicpc.net/problem/2566소스 코드 (c++)#include using namespace std;int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int arr[9][9]; int pos[2] = {0,}, max = 0; for (int i = 0; i > arr[i][j]; if (max 알고리즘/BaekJoon 단계별로 풀어보기 2024.11.03