Submission #14485

# Submission time Handle Problem Language Result Execution time Memory
14485 2015-05-17T14:08:21 Z nosiar 최댓값 (tutorial2) C++
Compilation error
0 ms 0 KB
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
    int n; cin >> n;
    int x, r = 0;
    while (n--) { cin >> x; r = max(r, x); }
    cout << r << endl;
}

Compilation message

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