已采纳回答 / hhh112123123
0是false 非0即为true 这是我的理解 后面是我看别人的博客 它们的区别:c/c++ bool和BOOL的区别1、类型不同bool为布尔型BOOL为int型2、长度不同bool只有一个字节BOOL长度视实际环境来定,一般可认为是int类型的大小4个字节3、取值不同bool取值false和true,是0和1的区别BOOL取值FALSE和TRUE,是0和非0的区别4、bool是标准C/C++数据类型,可取值true和false。单独占一个字节,如果数个bool对象列在一起,可能会各占一个bit,这...
2015-11-02
最新回答 / Hc丶
#include<iostream>using namespace std;int get(int *a,int m,bool isMax){ int temp=a[0]; for(int i=1;i<m;i++) { if(isMax) { if(temp<a[i]) { temp=a[i]; } } else { if(temp>a[i]) { temp=a[i]; } } }}int main(){ int a[5...
2015-10-25