Submission #18783

#TimeUsernameProblemLanguageResultExecution timeMemory
18783pang최댓값 (tutorial2)C++14
Compilation error
0 ms0 KiB
#include<iostream> using namespace std; int main() { int n; cin >> n; int x,maxv; cin >> maxv; for(int i=1; i<n; i++) { cin >> x; if(maxv<x) maxv=x; } cout << maxv << endl; return 0; }

Compilation message (stderr)

/tmp/ccAMZEAq.o: In function `main':
tutorial2.cpp:(.text.startup+0x0): multiple definition of `main'
/tmp/cc0iyRDG.o:grader.cpp:(.text.startup+0x0): first defined here
/tmp/cc0iyRDG.o: In function `main':
grader.cpp:(.text.startup+0x97): undefined reference to `GetMax(int, int*)'
collect2: error: ld returned 1 exit status