很多时候,在编程中,您需要一种只能具有两个值之一的数据类型,例如:
#include <iostream>
using namespace std;
int main() {
bool cainiao = true;
bool chuan = false;
cout << cainiao << "\n";
cout << chuan;
return 0;
}
演示:
布尔表达式是一个C ++表达式返回一个布尔值:1(真)或0(假).你可以使用比较运算符,例如大于( >) 运算符来确定表达式(或变量)是否为真:
#include <iostream>
using namespace std;
int main() {
int x = 25;
int y = 12;
cout << (x > y);
return 0;
}
演示:
或者更简单:
#include <iostream>
using namespace std;
int main() {
cout << (10 > 9);
return 0;
}
演示:
在下面的示例中,我们使用等于( ==) 运算符来计算表达式:
#include <iostream>
using namespace std;
int main() {
int x = 10;
cout << (x == 10);
return 0;
}
演示:
再试试:
#include <iostream>
using namespace std;
int main() {
cout << (10 == 15);
return 0;
}
演示:
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/weixin_46211269/article/details/120461395
内容来源于网络,如有侵权,请联系作者删除!