在 C++ 中,可以使用 peek() 函数来查看输入流中的下一个字符,而不会将其从输入流中取出。 下面是使用 peek() 函数查看下一个字符的示例代码: #include iostream int main() { char ch; std::cout ..