제출 #511134

#제출 시각아이디문제언어결과실행 시간메모리
511134Salama최댓값 (tutorial2)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; long long z=0; long long GetMax(long long x,long long q[]){ x-=1; if(x>0) {if(q[x]>q[x-1]){ z=max(z,q[x]); return GetMax(x,q);} else { z=max(z,q[x-1]); return GetMax(x-1,q);}} return z; }

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

/usr/bin/ld: /tmp/ccasM4X3.o: in function `main':
grader.cpp:(.text.startup+0xaa): undefined reference to `GetMax(int, int*)'
collect2: error: ld returned 1 exit status