这段程序代码,为什么运行部起来?不知道该怎么修改#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;}
1 回答
忽然笑
TA贡献1806条经验 获得超5个赞
bool 只能是 True 或者是false
给所以您给BOOL的名字不正确。
bool B;
if(B==true)
{
cout<<”ok”
}
if(B==false)
{
cout<<”error”
}
添加回答
举报
0/150
提交
取消