Submission #3176

#TimeUsernameProblemLanguageResultExecution timeMemory
3176cki86201최댓값 (tutorial2)C++98
Compilation error
0 ms0 KiB
int GetMax(N, A){ int i,ret=0; for(i=0;i<N;i++)ret=ret>A[i]?ret:A[i]; return ret; }

Compilation message (stderr)

tutorial2.cpp:1:12: error: 'N' was not declared in this scope
tutorial2.cpp:1:15: error: 'A' was not declared in this scope
tutorial2.cpp:1:16: error: expression list treated as compound expression in initializer [-fpermissive]
tutorial2.cpp:1:17: error: expected ',' or ';' before '{' token