제출 #444813

#제출 시각아이디문제언어결과실행 시간메모리
444813duckit70Cluedo (IOI10_cluedo)C++14
컴파일 에러
0 ms0 KiB
#include "grader.h"
#include "cluedo.h"
void solve()
{  
int m,l,w;
  m=l=w=1;
  int t=Theory(m,l,w);
  if(t==0)
    return;
  else{
    if(t==1)  t=Theory(m+1,l,w);
    else
      if(t==2) t=Theory(m,l+1,w);
    else t=Theory(m,l,w+1);    
  }

}

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

/usr/bin/ld: /tmp/cczTj38c.o: in function `main':
grader.c:(.text.startup+0x49): undefined reference to `Solve()'
collect2: error: ld returned 1 exit status