Submission #41067

# Submission time Handle Problem Language Result Execution time Memory
41067 2018-02-12T10:09:00 Z hsb154 cmp (balkan11_cmp) C++14
Compilation error
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]
 }
 ^