Compare variables input from the keyboard and store the results off into a logical variable - C++ Operator

C++ examples for Operator:Logical Operator

Description

Compare variables input from the keyboard and store the results off into a logical variable

Demo Code

#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;

int main(int nNumberofArgs, char* pszArgs[])
{
    // set output format for bool variables to true and false instead of 1 and 0
    cout.setf(cout.boolalpha);//from ww w.j  a  v  a 2 s.co  m

    int nArg1;
    cout << "Input value 1: ";
    cin >> nArg1;

    int nArg2;
    cout << "Input value 2: ";
    cin >> nArg2;

    bool b;
    b = nArg1 == nArg2;

    cout << "The statement, " << nArg1
         << " equals "        << nArg2
         << " is "            << b
         << endl;

    return 0;
}

Result


Related Tutorials