제출 #1798

#제출 시각아이디문제언어결과실행 시간메모리
1798caffeinism7최댓값 (tutorial2)C++98
컴파일 에러
0 ms0 KiB
#include <stdio.h>

int GetMax(int N, int A[]){


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 max = 0;

	for(int i=1; i<=N; i++){
		if(max < A[i]){
			max = A[i];
		}
	}

	return max;
}

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

tutorial2.cpp: In function 'int GetMax(int, int*)':
tutorial2.cpp:6:15: error: a function-definition is not allowed here before '{' token
tutorial2.cpp:29:1: error: expected '}' at end of input
tutorial2.cpp:29:1: warning: no return statement in function returning non-void [-Wreturn-type]