gpt4 book ai didi

c++ - 在 C++ 中打印 boolean 值

转载 作者:太空宇宙 更新时间:2023-11-04 14:37:11 24 4
gpt4 key购买 nike

#include <iostream>
using namespace std ;
int main()
{
int a=5, b=4;
cout<< a==b;
}

为什么我不能打印这段代码。我怎样才能打印 boolean 值?

最佳答案

您正在处理运算符优先级问题:

cout << a==b;

被解释为

(cout << a) == b;

因为 << 的优先级高于 ==。

关于c++ - 在 C++ 中打印 boolean 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12998764/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com