Alright so this is the code I have so far:

public static void main(String[] args) {
String inFix = "2*2+2";
String postFix = InfixToPostfix(inFix);
System.out.println("InFix: " +...