제출 #21758

#제출 시각아이디문제언어결과실행 시간메모리
21758slanjdu최댓값 (tutorial2)C++14
컴파일 에러
0 ms0 KiB
#include<iostream>
using namespace std;

int main()
{
  int n,x;
  int max = 0;
  cin>>n;
  for(int i=0;i<n;i++)
  {
    cin>>x;
    max=x>max?x:max;
  }
  cout<<max<<'\n';
  return 0;
}

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

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