Submission #8828

#TimeUsernameProblemLanguageResultExecution timeMemory
8828xiaoyu짝수 정렬 (tutorial3)C++98
Compilation error
0 ms0 KiB
#include "grader.h" void sort_even(int N, int *A) { vector<int> v; int i; for(i = 0; i < N; i++) { if(A[i] % 2 == 0) v.push_back(A[i]); } sort(v.rbegin(), v.rend()); for(i=0;i<v.size();i++) Report(v[i]); }

Compilation message (stderr)

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:4:5: error: 'vector' was not declared in this scope
tutorial3.cpp:4:12: error: expected primary-expression before 'int'
tutorial3.cpp:4:12: error: expected ';' before 'int'
tutorial3.cpp:8:21: error: 'v' was not declared in this scope
tutorial3.cpp:11:8: error: 'v' was not declared in this scope
tutorial3.cpp:11:28: error: 'sort' was not declared in this scope