답안 #42849

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
42849 2018-03-05T02:14:07 Z kinssang 비교 (balkan11_cmp) C++14
컴파일 오류
0 ms 0 KB
#include "cmp.h"

void remember(int n) {
  //edit this
  //bit_set(13);
}

int compare(int b) {
  //edit this
  if(b > a) return 1;
  else if (b < a) return -1;
  else return 0;
}

Compilation message

cmp.cpp: In function 'int compare(int)':
cmp.cpp:10:10: error: 'a' was not declared in this scope
   if(b > a) return 1;
          ^
cmp.cpp:13:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^