제출 #4935

#제출 시각아이디문제언어결과실행 시간메모리
4935jumax1008최댓값 (tutorial2)C++98
컴파일 에러
0 ms0 KiB
#include <iostream>
using namespace std;
int main()
{
  int n,in[10],max_=0;
  cin>>n;
  for(int i=0 ; i<n;  i++)
  {  cin>>in[i];
   if(max_<in[i])
     max_=in[i];
  }
  cout<<max_;
  return 0;
}

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

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