제출 #19196

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

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

/tmp/ccOLgfg4.o: In function `main':
tutorial2.cpp:(.text.startup+0x0): multiple definition of `main'
/tmp/ccJOGYuD.o:grader.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status