-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathTask 01.cpp
More file actions
86 lines (73 loc) · 1.57 KB
/
Copy pathTask 01.cpp
File metadata and controls
86 lines (73 loc) · 1.57 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
85
86
#include<iostream>
using namespace std;
class Calculator
{
private:
int val;
public:
int getValue()
{
return val;
}
void setValue(int value)
{
val = value;
}
void add(int value)
{
val += value;
}
void subtract (int value)
{
val -= value;
}
void multiply (int value)
{
val *= value;
}
void divideBy (int value)
{
val /= value;
}
void clearValue()
{
val = 0;
}
Calculator() : val(0)
{
}
Calculator(int init) : val(init)
{
}
};
int main()
{
Calculator c1;
Calculator c2(10); //just proving both initializations worked
cout<<"Initial Value of c1 = "<<c1.getValue()<<endl;
cout<<"Initial Value of c2 = "<<c2.getValue()<<endl;
int newVal;
cout<<"Set new value for c1: "; //setting new value
cin>>newVal;
c1.setValue(newVal);
cout<<"Calculator Display: "<<c1.getValue()<<endl;
cout<<"Add: ";
cin>>newVal;
c1.add(newVal);
cout<<"Calculator Display: "<<c1.getValue()<<endl;
cout<<"Subtract: ";
cin>>newVal;
c1.subtract(newVal);
cout<<"Calculator Display: "<<c1.getValue()<<endl;
cout<<"Multiply: ";
cin>>newVal;
c1.multiply(newVal);
cout<<"Calculator Display: "<<c1.getValue()<<endl;
cout<<"Divide by: ";
cin>>newVal;
c1.divideBy(newVal);
cout<<"Calculator Display: "<<c1.getValue()<<endl;
cout<<"Clearing display..."<<endl; //proving clear works
c1.clearValue();
cout<<"Calculator Display: "<<c1.getValue()<<endl;
}