-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPostExpression.java
More file actions
40 lines (38 loc) · 1.11 KB
/
Copy pathPostExpression.java
File metadata and controls
40 lines (38 loc) · 1.11 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
package Self_Learning;
import java.util.Scanner;
import java.util.Stack;
public class PostExpression {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
String str=sc.next();
Stack<Integer> stack=new Stack<>();
for(char ch:str.toCharArray()){
if(Character.isDigit(ch)){
stack.push(ch-'0');
}
else{
int b=stack.pop();
int a=stack.pop();
switch(ch){
case '+':
stack.push(a+b);
break;
case '-':
stack.push(a-b);
break;
case '*':
stack.push(a*b);
break;
case '/':
stack.push(a/b);
break;
case '%':
stack.push(a%b);
break;
}
}
}
System.out.println(stack.pop());
sc.close();
}
}