Submission #1011812

#TimeUsernameProblemLanguageResultExecution timeMemory
1011812nomuluunHotter Colder (IOI10_hottercolder)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; Guess(int i); int HC(int N){ for(int i=1; i<=N; i++){ Guess(i); } }

Compilation message (stderr)

hottercolder.cpp:3:13: error: expected constructor, destructor, or type conversion before ';' token
    3 | Guess(int i);
      |             ^
hottercolder.cpp: In function 'int HC(int)':
hottercolder.cpp:6:9: error: 'Guess' was not declared in this scope
    6 |         Guess(i);
      |         ^~~~~
hottercolder.cpp:8:1: warning: no return statement in function returning non-void [-Wreturn-type]
    8 | }
      | ^