Submission #146236

#TimeUsernameProblemLanguageResultExecution timeMemory
146236Diuven짝수 정렬 (tutorial3)C++14
Compilation error
0 ms0 KiB
#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 (stderr)

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