Submission #145808

# Submission time Handle Problem Language Result Execution time Memory
145808 2019-08-21T07:02:55 Z leewj1025 짝수 정렬 (tutorial3) C++14
Compilation error
0 ms 0 KB
#include <stdio.h>
#include <assert.h>
#include <malloc.h>

void 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: In function 'void sort_even(int, int*)':
tutorial3.cpp:8:22: error: 'Report' was not declared in this scope
   if (A[i] % 2 == 0) Report(A[i]);
                      ^~~~~~
tutorial3.cpp:8:22: note: suggested alternative: 'short'
   if (A[i] % 2 == 0) Report(A[i]);
                      ^~~~~~
                      short