This commit is contained in:
2025-08-23 15:15:57 +08:00
commit b5fbaa9db5
167 changed files with 2087 additions and 0 deletions

19
笔记/C++.md Normal file
View File

@ -0,0 +1,19 @@
## 基础配置
#### 1.编码及输出
```cpp
#if WIN32
system("chcp 65001");
setbuf(stdout, NULL);//解决Clion内置控制台debug时不显示打印的问题
#endif
```
---
## 字符串检查函数
![[Pasted image 20250213092216.png]]
---
## 异常
![[Pasted image 20250213171955.png]]
---