Submission #41067

#TimeUsernameProblemLanguageResultExecution timeMemory
41067hsb154cmp (balkan11_cmp)C++14
Compilation error
0 ms0 KiB
#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 (stderr)

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]
 }
 ^