-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSimpleCalculator.java
48 lines (37 loc) · 997 Bytes
/
SimpleCalculator.java
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
package com.example.app;
/**
* Simple calculator
*
*/
public class SimpleCalculator {
// write your code here
private double firstNumber;
private double secondNumber;
public double getFirstNumber(){
return this.firstNumber;
}
public double getSecondNumber(){
return this.secondNumber;
}
public void setFirstNumber(double value){
this.firstNumber = value;
}
public void setSecondNumber(double value){
this.secondNumber = value;
}
public double getAdditionResult(){
return this.firstNumber + this.secondNumber;
}
public double getSubtractionResult(){
return this.firstNumber - this.secondNumber;
}
public double getMultiplicationResult(){
return this.firstNumber * this.secondNumber;
}
public double getDivisionResult(){
if(this.secondNumber != 0){
return this.firstNumber / this.secondNumber;
}
return 0;
}
}