-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaCalculatorTask.java
More file actions
55 lines (50 loc) · 1.57 KB
/
JavaCalculatorTask.java
File metadata and controls
55 lines (50 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
import java.text.DecimalFormat;
import java.util.Scanner;
import java.util.Stack;
public class JavaCalculatorTask {
public static double calculate(String s) {
double len;
if(s==null || (len = s.length())==0) return 0;
Stack<Double> stack = new Stack<Double>();
double num = 0;
char sign = '+';
for(int i=0;i<len;i++){
if(Character.isDigit(s.charAt(i))){
num = num*10+s.charAt(i)-'0';
}
if((!Character.isDigit(s.charAt(i)) &&' '!=s.charAt(i)) || i==len-1){
if(sign=='-'){
stack.push(-num);
}
if(sign=='+'){
stack.push(num);
}
if(sign=='*'){
stack.push(stack.pop()*num);
}
if(sign=='/'){
stack.push(stack.pop()/num);
}
sign = s.charAt(i);
num = 0;
}
}
double re = 0;
for(double i:stack){
re += i;
}
return re;
}
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String expression = input.next();
double result = calculate(expression);
if(result > (double) (Math.floor(result))) {
DecimalFormat numberFormat = new DecimalFormat("0.00000");
System.out.println(numberFormat.format(result));
}
else {
System.out.println((long) (Math.floor(result)));
}
}
}