제출 #41040

#제출 시각아이디문제언어결과실행 시간메모리
41040bgh2982보물 찾기 (CEOI13_treasure2)C++14
컴파일 에러
0 ms0 KiB
int sum[101][101]; void findTreasure(int N) { int i, j; for (i = 1; i <= N; i++) for (j = 1; j <= N; j++) sum[i][j] = countTreasure(1, 1, i, j); for(i=1 ; i<=N ; i++) for(j=1 ; j<=N ; j++) if (sum[i][j] - sum[i - 1][j] - sum[i][j - 1] + sum[i - 1][j - 1]) Report(i, j); }

컴파일 시 표준 에러 (stderr) 메시지

grader.c: In function 'int main()':
grader.c:63:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         my_assert(strlen(A[i]+1) == N, "each line of the map must contain N zeroes or ones (before loop)");
                                  ^
treasure.cpp: In function 'void findTreasure(int)':
treasure.cpp:8:40: error: 'countTreasure' was not declared in this scope
    sum[i][j] = countTreasure(1, 1, i, j);
                                        ^
treasure.cpp:12:16: error: 'Report' was not declared in this scope
     Report(i, j);
                ^