Read the tutorial I posted in post#24must implement the inherited abstract method java.awt.event.ActionListener.actionPerformed(java .awt.event.ActionEvent)
Or remove the implements ActionListener phrase from the class definition
The compile is telling you to insert a } at line 44[line: 44]
Error: Syntax error, insert "}" to complete MethodBody
Either change the definition of the method that line 148 is inside of[line: 148]
Error: Void methods cannot return a value
or change the return statement to not return a value.
Change the variable to be final.[line: 148]
Error: Cannot refer to a non-final variable guess inside an inner class defined in a different method