제출 #13334

#제출 시각아이디문제언어결과실행 시간메모리
13334ggoh게임 (IOI14_game)C++98
컴파일 에러
0 ms0 KiB
#include<cstdio> int w[1501]; void initialize(int n); int hasEdge(int u,int v) { if(w[u]==n-2||w[v]==n-2) { return 1; } else { w[u]++; w[v]++; return 0; } }

컴파일 시 표준 에러 (stderr) 메시지

game.cpp: In function ‘int hasEdge(int, int)’:
game.cpp:6:11: error: ‘n’ was not declared in this scope
  if(w[u]==n-2||w[v]==n-2)
           ^
game.cpp:16:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^