제출 #1799

#제출 시각아이디문제언어결과실행 시간메모리
1799caffeinism7최댓값 (tutorial2)C++98
컴파일 에러
0 ms0 KiB
#include <stdio.h> int main(void){ int N, A[3000]; scanf("%d", &N); for(int i = 1; i <= N; i ++){ scanf("%d", &A[i]); } printf("%d", GetMax(N, A)); return 0; } int GetMax(int N, int A[]){ int max = 0; for(int i=1; i<=N; i++){ if(max < A[i]){ max = A[i]; } } return max; }

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

tutorial2.cpp: In function 'int main()':
tutorial2.cpp:14:26: error: 'GetMax' was not declared in this scope
tutorial2.cpp:8:17: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
tutorial2.cpp:11:21: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]