12 20 C:\Users\王淑婧\Desktop\贪吃蛇.cpp [Error] 'srand' was not declared in this scope13 34 C:\Users\王淑婧\Desktop\贪吃蛇.cpp [Error] 'memset' was not declared in this scope68 39 C:\Users\王淑婧\Desktop\贪吃蛇.cpp [Error] 'Sleep' was not declared in this scope
时间: 2023-06-30 13:04:40 浏览: 148
这是因为你的代码中没有包含对应的头文件导致的。你需要在代码开头添加以下三个头文件:
```c++
#include <cstdlib>
#include <cstring>
#include <windows.h>
```
其中,`cstdlib` 包含了 `srand` 函数,`cstring` 包含了 `memset` 函数,`windows.h` 包含了 `Sleep` 函数。添加之后再编译就可以解决这些错误了。
阅读全文