如何冲洗CIN缓冲液?如何清除C+中的CIN缓冲区?
3 回答
哈士奇WWW
TA贡献1799条经验 获得超6个赞
std::cin.ignore(INT_MAX);
EOF
'\n'
std::cin.clear();
慕盖茨4494581
TA贡献1850条经验 获得超11个赞
// Ignore to the end of filecin.ignore(std::numeric_limits<std::streamsize>::max()) // Ignore to the end of linecin.ignore(std::numeric_limits<std::streamsize>::max(), '\n')
- 3 回答
- 0 关注
- 467 浏览
添加回答
举报
0/150
提交
取消