제출 #19197

#제출 시각아이디문제언어결과실행 시간메모리
19197anrhks1212최댓값 (tutorial2)C++98
컴파일 에러
0 ms0 KiB
#include <iostream> using namespace std; int GetMax(int N, int *A); int main() { int N; cin >> N; int *A = new int[N - 1]; int temp = GetMax(N, A); cout << temp; return 0; } int GetMax(int N, int *A) { int i=0, max=0; for (i = 0; i<N; i++) { cin >> A[i]; } max = A[0]; for (i = 0; i < N - 1; i++) { if (max < A[i + 1]) { max = A[i + 1]; } return max; } }

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

tutorial2.cpp: In function ‘int GetMax(int, int*)’:
tutorial2.cpp:33:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
/tmp/ccqJ56pd.o: In function `main':
tutorial2.cpp:(.text.startup+0x0): multiple definition of `main'
/tmp/ccFB7Ig6.o:grader.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status