Files
Obsidian/笔记/C++.md

20 lines
310 B
Markdown
Raw Permalink Normal View History

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