71 9 C:\Users\86152\Documents\c语言(1)\通讯录.cpp [Error] 'string' was not declared in this scope
时间: 2023-06-24 22:07:37 浏览: 86
C语言通讯录.cpp
这个错误提示是因为你的代码中使用了 `string` 类型,但是编译器无法识别该类型。这通常是因为你没有正确地包含 `string` 的头文件。
在 C++ 中, `string` 类型属于标准库中的一部分,因此需要包含相应的头文件。在你的代码中添加以下一行代码即可解决该问题:
```cpp
#include <string>
```
这样就能够使编译器识别 `string` 类型了。
阅读全文