forked from naroladhar/Cpp_progs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_2_Bool.cpp
More file actions
31 lines (31 loc) · 786 Bytes
/
_2_Bool.cpp
File metadata and controls
31 lines (31 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// BoolTest - compare variables input from the
// keyboard and store the results off
// into a logical variable
#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);
// initialize two arguments
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;
// wait until user is ready before terminating program
// to allow the user to see the program results
system("PAUSE");
return 0;
}