답안 #145785

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
145785 2019-08-21T06:53:07 Z xxxxorb0221 최댓값 (tutorial2) C++14
컴파일 오류
0 ms 0 KB
#include<cstdio>
#include<algorithm>
using namespace std;
int Getmax(int N,int *A){
  int ans=A[0];
  for(int i=0;i<N;i++)
    ans=max(ans,A[i]);
  return ans;
}

Compilation message

/tmp/ccznVzTu.o: In function `main':
grader.cpp:(.text.startup+0x97): undefined reference to `GetMax(int, int*)'
collect2: error: ld returned 1 exit status