2个回答
展开全部
如果使用c++中iostream来输出的话可以用std::boolalpha 来控制,默认情况下使用整数0,1来代表bool值的
示例代码:
#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
bool test = true;
cout << "the output is number " << test << endl;
cout << "the output is bool(use boolalpha) " << boolalpha << test << endl;
cout << "the output is number(use noboolalpha) " << noboolalpha << test << endl;
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询