Submission #17103

# Submission time Handle Problem Language Result Execution time Memory
17103 2015-11-05T17:18:21 Z pscheol 짝수 정렬 (tutorial3) C++
Compilation error
0 ms 0 KB
#include "grader.h"

sort_even(int N, int *A) {
	int i;
	for (i = 0; i < N; i++) {
		if (A[i] % 2 == 0) Report(A[i]);
	}
}

Compilation message

tutorial3.cpp:3:24: error: ISO C++ forbids declaration of ‘sort_even’ with no type [-fpermissive]
 sort_even(int N, int *A) {
                        ^
tutorial3.cpp: In function ‘int sort_even(int, int*)’:
tutorial3.cpp:8:1: warning: no return statement in function returning non-void [-Wreturn-type]
 }
 ^