// How a boolean looks #include #include using namespace std; int main() { bool isAMale = true; bool isAFemale = false; isAFemale++; cout << "Here's how a true looks " << true << endl; cout << "Here's how a false looks " << false << endl; cout << "Here's the contents of isAMale " << isAMale << endl; cout << "Here's the contents of isAFemale " << isAFemale << endl; system("pause"); }