답안 #843942

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
843942 2023-09-04T17:49:51 Z mihaibun 축구 경기장 (IOI23_soccer) C++17
컴파일 오류
0 ms 0 KB
#include <iostream>
#include <soccer.h>
using namespace std;

int biggest_stadium(int N, int[][] F)
{
    int i,j,x;
    for(i = 0; i < N; i++)
        for(j = 0; j < N; j++)
            if(F[i][j]==0) x++;
    return x;
}

Compilation message

soccer.cpp:5:34: error: multidimensional array must have bounds for all dimensions except the first
    5 | int biggest_stadium(int N, int[][] F)
      |                                  ^
soccer.cpp:5:36: error: expected ',' or '...' before 'F'
    5 | int biggest_stadium(int N, int[][] F)
      |                                    ^
soccer.cpp: In function 'int biggest_stadium(int)':
soccer.cpp:10:16: error: 'F' was not declared in this scope
   10 |             if(F[i][j]==0) x++;
      |                ^