제출 #18783

#제출 시각아이디문제언어결과실행 시간메모리
18783pang최댓값 (tutorial2)C++14
컴파일 에러
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;
}

컴파일 시 표준 에러 (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