제출 #718

#제출 시각아이디문제언어결과실행 시간메모리
718zyslee최댓값 (tutorial2)C++98
컴파일 에러
0 ms0 KiB
#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); }

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

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