제출 #5049

#제출 시각아이디문제언어결과실행 시간메모리
5049jspark19990205최댓값 (tutorial2)C++98
컴파일 에러
0 ms0 KiB
int GetMax(int n, int *A) { int i; int max = 0; for(i=0;i<n;i++) if(max<a[i]) max = a[i]; return max; }

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

tutorial2.cpp: In function 'int GetMax(int, int*)':
tutorial2.cpp:6:10: error: 'a' was not declared in this scope