以下是关于bool型的问题,有了解的大佬吗?

这段程序代码,为什么运行部起来?不知道该怎么修改
#include<iostream>
using namespace std;
int main(){ 
 bool b=-1;
if(b)
cout<<"ok"<<endl;
b=b-1;
if(b)
cout<<"error"<<endl;
return 0;
}

温温酱
浏览 194回答 1
1回答

忽然笑

bool 只能是 True 或者是false给所以您给BOOL的名字不正确。bool B;if(B==true){cout<<”ok”}if(B==false){cout<<”error”}
打开App,查看更多内容
随时随地看视频慕课网APP