bool
类型是一种编程语言中的基本数据类型,用于表示布尔逻辑中的真或假。- bool 类型占一个字节
- bool类型只有两个值,一个是True(1)、一个是False(0)。
#include <iostream>
#include <string>
using namespace std;
int main() {
bool a = true;
bool b = false;
if (a) {
cout << "a is true" << endl;
} else {
cout << "a is false" << endl;
}
if (!b) {
cout << "b is false" << endl;
}
}