P21-23-逻辑运算符-否、或、与

#include
using namespace std; 
int main()
{
//逻辑运算符 非
    //在c++中,除了0都是为真
    int a = 10;
    cout << !a << endl;
    //逻辑运算符 与 &&
    int b = 10;
    int c = 0;
    cout << (a && b)<         cout << (a && c)<     //逻辑运算符 或 || 在enter上面
        int a1 = 10;
        int b1 = 0;
        cout<<(a1 || b1) << endl;
    system("pause");

    return 0;
}

你可能感兴趣的:(html5,html)