最佳答案
我将 bool
打印到如下输出流:
#include <iostream>
int main()
{
std::cout << false << std::endl;
}
该标准是否需要流上的特定结果(例如 0
对于 false
) ?