在c中我们使用bool需要用到typedef
#include <iostream>
using namespace std;
typedef int BOOL;
int main()
{
BOOL B = 1;//非0为真,0为假
system("pause");
return 0;
}
然而我们在c++中就比较简单,只需要使用bool这个c++的关键字就可以定义这个真假
#include <iostream>
using namespace std;
int main()
{
bool b = true;
b = false;
cout << b << endl;
system("pause");
return 0;
}