Try using input.next();
instead of input.nextLine();
Because input.nextLine();
advances this scanner past the current line and returns the input that was skipped. so if your input was 20, +, and 24, your method calc
would get 20,24,null.
2
solved i cant get my calculator to work