怎么解决vs2022#include <bits/stdc++.h>报错
时间: 2023-08-15 18:06:14 浏览: 328
visual studio中若要使用#include <bits/stdc++.h>,需手动添加头文件:stdc++.h
5星 · 资源好评率100%
`#include <bits/stdc++.h>` 这个头文件是非标准的,不建议在实际的项目中使用。如果你在 VS2022 中使用这个头文件,会出现以下错误:
```
fatal error C1083: Cannot open include file: 'bits/stdc++.h': No such file or directory
```
这是因为在 Windows 平台下没有 `bits/stdc++.h` 这个文件。建议使用标准的头文件,例如 `iostream`、`cstdio`、`cstdlib` 等等,根据实际需要选择合适的头文件即可。
阅读全文