답안 #41067

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
41067 2018-02-12T10:09:00 Z hsb154 비교 (balkan11_cmp) C++14
컴파일 오류
0 ms 0 KB
#include "cmp.h"

void remember(int n) {
}

int compare(int b) {
	if (boi_guessval < b)
		return 1;
	if (boi_guessval > b)
		return -1;
	if (boi_guessval == b)
		return 0;
}

Compilation message

cmp.cpp: In function 'int compare(int)':
cmp.cpp:7:6: error: 'boi_guessval' was not declared in this scope
  if (boi_guessval < b)
      ^~~~~~~~~~~~
cmp.cpp:9:6: error: 'boi_guessval' was not declared in this scope
  if (boi_guessval > b)
      ^~~~~~~~~~~~
cmp.cpp:11:6: error: 'boi_guessval' was not declared in this scope
  if (boi_guessval == b)
      ^~~~~~~~~~~~
cmp.cpp:13:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^