제출 #12831

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

int main() {
	int n; cin>>n;
  	int x; cin>>x; n--;
  	int mx=x;
  	for (int i=0; i<n; i++) cin>>x, mx=max(mx,x);
  	cout << mx << endl;
  	return 0;
}

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

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