제출 #14496

#제출 시각아이디문제언어결과실행 시간메모리
14496ggoh짝수 정렬 (tutorial3)C++98
컴파일 에러
0 ms0 KiB
#include<cstdio>
#include<algorithm>
int sort_even(int N,int *A)
{
	int B[100]={},t=0,i;
	for(i=0;i<N;i++)
	{
		if(A[i]%2==0)
		{
			B[t++]=A[i];
		}
		std::sort(B,B+t);
		for(i=0;i<t;i++)Report(S[i]);
	}
}

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

tutorial3.cpp: In function ‘int sort_even(int, int*)’:
tutorial3.cpp:13:26: error: ‘S’ was not declared in this scope
   for(i=0;i<t;i++)Report(S[i]);
                          ^
tutorial3.cpp:13:30: error: ‘Report’ was not declared in this scope
   for(i=0;i<t;i++)Report(S[i]);
                              ^
tutorial3.cpp:15:1: warning: no return statement in function returning non-void [-Wreturn-type]
 }
 ^