답안 #218293

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
218293 2020-04-01T20:58:31 Z L01 크레이피쉬 글쓰는 기계 (IOI12_scrivener) C++17
컴파일 오류
0 ms 0 KB
#include "cluedo.h"
void ResolverCaso()
{
	int p=-1,c=1,u=1,a=1;
	while(p!=0)
    {
        p=Teoria(c,u,a);
        if(p==1)
            c++;
        else
        {
            if(p==2)
                u++;
            else
            {
                a++;
            }
        }
    }
}

Compilation message

scrivener.cpp:1:10: fatal error: cluedo.h: No such file or directory
 #include "cluedo.h"
          ^~~~~~~~~~
compilation terminated.