답안 #146236

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
146236 2019-08-23T00:57:35 Z Diuven 짝수 정렬 (tutorial3) C++14
컴파일 오류
0 ms 0 KB
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;

void sort_even(int N, int *A) {
    vector<int> S;
	for(int i = 0; i < N; i++) {
		if(A[i] % 2 == 0) S.push_back(A[i]);
	}
    sort(S.begin(), S.end());
    for(int x:S) report(x);
}

Compilation message

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:11:18: error: 'report' was not declared in this scope
     for(int x:S) report(x);
                  ^~~~~~
tutorial3.cpp:11:18: note: suggested alternative: 'Report'
     for(int x:S) report(x);
                  ^~~~~~
                  Report