-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCalculator.java
More file actions
245 lines (170 loc) · 4.57 KB
/
Calculator.java
File metadata and controls
245 lines (170 loc) · 4.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/**
[By Amr Ramadan, 7/10/22, 03:59]
*GitHub repo:
https://github.com/AmrRamadan01/Data-Structures-Lab-01
*All FRs staified.
*Items to be added:
1- A try-catch block to handle all invaild inputs such as "2+3+5" (done)
**/
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
interface ICalculator {
/**
* Adds given two numbers
* @param x first number
* @param y second number
* @return the sum of the two numbers
*/
int add(String exp);
/**
* Divides two numbers.
* @param exp is the input expression.
* @return the addition result.
*/
float divide(String exp) throws RuntimeException;
/**
* Divides two numbers using integer division.
* @param exp is the input expression.
* @return the division result.
**/
}
public class Calculator implements ICalculator{
public static void main( String[] args){
/**
creating an instance of the calculator class to access the non-static
methods of the ICalculator's Interface.
**/
Calculator calculator = new Calculator();
//reading the input from the user.
String expression = Calculator.getInput();
/**
This conditional block is to identify the type
of the operator.
**/
if(Calculator.isAdd(expression)){
int result = calculator.add(expression);
System.out.println(result);
}
else if(Calculator.isDiv(expression)){
/**
The try-catch block is to avoid
unhandled exeptions.
**/
try{
float result = calculator.divide(expression);
System.out.println(result);
}
/**
* The catch block is reponsible for
handeling illegal devision by zero.
* It catches the ArithmaticException throwable.
**/
catch(ArithmeticException e){
System.out.println("Error");
}
}
else {
System.out.println("Error");
}
}
// User input reading method.
public static String getInput(){
// Instanciating a scanner object to scan the user input.
Scanner sc = new Scanner(System.in);
//System.out.println("Please Enter the expression to be evaluated: ");
// reading the user input.
String expStr = sc.nextLine();
return (expStr);
}
// Addition operator detiction method implementation.
public static boolean isAdd(String exp){
/**
This block uses the regular expression "/" to
search for the division operator within the
input string. Note: "//+" uses the escape
character as "+" has a reserved meaning
in regular expressions.
**/
Pattern operator = Pattern.compile("\\+");
Matcher matcher = operator.matcher(exp);
if(matcher.find()){
return(true);
}
else {
return(false);
}
}
//Division operator detiction method implementation.
public static boolean isDiv(String exp){
/**
This block uses the regular expression "/" to
search for the division operator within the
input string.
**/
Pattern operator = Pattern.compile("/");
Matcher matcher = operator.matcher(exp);
if(matcher.find()){
return(true);
}
else {
return(false);
}
}
// Addition method implementation.
public int add(String exp){
/**
This block splits the input string arround
the addition operator, replaces the white
spaces with empty strings, and converts
the string operands to integers to
be used in the result calculation. Again,
the escape character in "//+" is used
because "+" has reserved meaning in re.
**/
String [] strArr = exp.split("\\+",2);
int operand1 = 0;
int operand2 = 0;
strArr[0] = strArr[0].replaceAll(" ", "");
strArr[1] = strArr[1].replaceAll(" ", "");
try{
operand1 = Integer.parseInt(strArr[0]);
operand2 = Integer.parseInt(strArr[1]);
return(operand1 + operand2);
}
catch(Exception e){
System.out.println("Error");
return(000);
}
}
//Division method implementation
public float divide(String exp){
/**
This block splits the input string arround
the division operator, replaces the white
spaces with empty strings, and converts
the string operands to integers to
be used in the result calculation.
The try-catch block checks for INFINITY
and NaN values returned by the float
division. It throws an exception to be
detected by the try-catch block enclosing
the method call in the main method.
**/
String [] strArr = exp.split("/",2);
int operand1 = 0;
int operand2 = 0;
strArr[0] = strArr[0].replaceAll(" ", "");
strArr[1] = strArr[1].replaceAll(" ", "");
operand1 = Integer.parseInt(strArr[0]);
operand2 = Integer.parseInt(strArr[1]);
if(operand2 == 0){
throw new ArithmeticException("Can't div by zero");
}
else{
return((float) operand1 / operand2);
}
}
}