제출 #19236

#제출 시각아이디문제언어결과실행 시간메모리
19236middleageddr최댓값 (tutorial2)C++98
컴파일 에러
0 ms0 KiB
int GetMax(int N, int *A){ int i, max; max = -1; for (i = 0; i < N; i++) { if (max < *(A + i)) max = *(A + i); return max; }

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

tutorial2.cpp: In function ‘int GetMax(int, int*)’:
tutorial2.cpp:11:1: error: expected ‘}’ at end of input
 }
 ^
tutorial2.cpp:11:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^