#include using namespace std; // What is the output of this program? int main() { bool x, y, z; x = 7 > 2; y = !x && 2 == 2; // Parentheses would be nice! z = !y || 6 <= 5; // Parentheses would be nice! cout << "x = " << x << "\n"; cout << "y = " << y << "\n"; cout << "z = " << z << endl; cout << "\n\n"; system( "PAUSE" ); return( 0 ); }