답안 #449

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
449 2013-02-25T06:27:20 Z beegle20 최댓값 (tutorial2) C++
컴파일 오류
0 ms 0 KB
#include<iostream>
int main()
{
  int a, n, max=0;
  std::cin>>n;
  for(int i=0;i<n;i++)
  {
    std::cin>>a;
    if(a>max)
      max=a;
  }
  std::cout<<a;
  return 0;
}

Compilation message

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