Submission #151816

#TimeUsernameProblemLanguageResultExecution timeMemory
151816erebos짝수 정렬 (tutorial3)C++17
Compilation error
0 ms0 KiB
#include "grader.h" #include <bits/stdc++.h> using namespace std; void sort_even(int N, int *A) { vector<int>temp; for(int i = 0; i < N; i++) { if(A[i] % 2 == 0) temp.push_back(A[i]); } sort(temp.begin(), temp.end()) for(int i=0; i<temp.size(); ++i){ Report(temp[i]); } }

Compilation message (stderr)

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:11:2: error: expected ';' before 'for'
  for(int i=0; i<temp.size(); ++i){
  ^~~
tutorial3.cpp:11:15: error: 'i' was not declared in this scope
  for(int i=0; i<temp.size(); ++i){
               ^