-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogicalOperator.cpp
More file actions
84 lines (71 loc) · 2.19 KB
/
LogicalOperator.cpp
File metadata and controls
84 lines (71 loc) · 2.19 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**
* \file LogicalOperator.cpp
* \brief
*
* \review
*
* The comparison operators are all binary operators that do not modify their left operands,
* we will make our overloaded comparison operators friend functions.
*/
#include <StdStream/StdStream.h>
#include <StdTest/StdTest.h>
#include <Stl.h>
//--------------------------------------------------------------------------------------------------
class Cents
{
public:
Cents(int cents) :
_cents(cents)
{
}
friend bool operator > (const Cents &c1, const Cents &c2);
friend bool operator < (const Cents &c1, const Cents &c2);
friend bool operator >= (const Cents &c1, const Cents &c2);
friend bool operator <= (const Cents &c1, const Cents &c2);
private:
int _cents {};
};
//--------------------------------------------------------------------------------------------------
bool
operator > (const Cents &c1, const Cents &c2)
{
return c1._cents > c2._cents;
}
//--------------------------------------------------------------------------------------------------
bool
operator < (const Cents &c1, const Cents &c2)
{
return c1._cents < c2._cents;
}
//--------------------------------------------------------------------------------------------------
bool
operator >= (const Cents &c1, const Cents &c2)
{
return c1._cents >= c2._cents;
}
//--------------------------------------------------------------------------------------------------
bool
operator <= (const Cents &c1, const Cents &c2)
{
return c1._cents <= c2._cents;
}
//--------------------------------------------------------------------------------------------------
int main()
{
Cents dime(10);
Cents nickle(5);
if (nickle > dime)
std::cout << "a nickle is greater than a dime.\n";
if (nickle >= dime)
std::cout << "a nickle is greater than or equal to a dime.\n";
if (nickle < dime)
std::cout << "a dime is greater than a nickle.\n";
if (nickle <= dime)
std::cout << "a dime is greater than or equal to a nickle.\n";
return EXIT_SUCCESS;
}
//--------------------------------------------------------------------------------------------------
#if OUTPUT
a dime is greater than a nickle.
a dime is greater than or equal to a nickle.
#endif