Submission #718

# Submission time Handle Problem Language Result Execution time Memory
718 2013-03-01T10:40:59 Z zyslee 최댓값 (tutorial2) C++
Compilation error
0 ms 0 KB
#include<stdio.h>
int main(void)
{
	int n, a, b, i;
	scanf("%d %d", &n, &a);
	for(i=2;i<=n;i++){
		scanf("%d", &b);
		if(a<b) a = b;
	}
	printf("%d", a);
}

Compilation message

tutorial2.cpp: In function 'int main()':
tutorial2.cpp:5:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
tutorial2.cpp:7:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
/tmp/cccdxOwx.o: In function `main':
tutorial2.cpp:(.text.startup+0x0): multiple definition of `main'
/tmp/ccudgDfi.o:grader.cpp:(.text.startup+0x0): first defined here
/tmp/ccudgDfi.o: In function `main':
grader.cpp:(.text.startup+0x97): undefined reference to `GetMax(int, int*)'
collect2: ld returned 1 exit status