제출 #145779

#제출 시각아이디문제언어결과실행 시간메모리
145779ps_penguin최댓값 (tutorial2)C++14
컴파일 에러
0 ms0 KiB
int GetMax(int N,int *A)
{
    int mx=0;
    for(int i=0;i<N;i++)
    {
        mx=max(mx,A[i]);
    }
    return mx;
}

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

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