답안 #145779

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
145779 2019-08-21T06:51:56 Z ps_penguin 최댓값 (tutorial2) C++14
컴파일 오류
0 ms 0 KB
int GetMax(int N,int *A)
{
    int mx=0;
    for(int i=0;i<N;i++)
    {
        mx=max(mx,A[i]);
    }
    return mx;
}

Compilation message

tutorial2.cpp: In function 'int GetMax(int, int*)':
tutorial2.cpp:6:12: error: 'max' was not declared in this scope
         mx=max(mx,A[i]);
            ^~~
tutorial2.cpp:6:12: note: suggested alternative: 'mx'
         mx=max(mx,A[i]);
            ^~~
            mx