I am struggling to find why I keep receiving this message:
Integer.java:13: error: cannot find symbol num = Integer.parseInt(numStr);
@Ricardo Desu Perez
change your below line
num = Integer.parseInt(numStr);
to following
num = java.lang.Integer.parseInt(numStr);
if you intend to call default parseInt method in Integer class else write your own version of parseInt(String) method