Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
104470 | 陈治宸 | 11石头剪刀布 | C++ | Compile Error | 0 MS | 0 KB | 651 | 2025-01-05 10:39:21 |
#include "game.h" #include <string> #include <conio.h> 头文件中主要内容: void run(); // 游戏运行入口 void initial(); // 游戏规则及操作说明 void instruct(); // 游戏规则 void helpp(); // 操作说明 void choose_mode(); // 选择游戏模式 void play(); // 进行游戏 choices choose(); // 选择下续操作 choices get_random(); // 获得随机选择 void show_result(int, int, int); // 显示对局结果 void compare(choices, choices); // 判断输赢
Main.cc:1:22: fatal error: game.h: No such file or directory #include "game.h" ^ compilation terminated.