To trim down the code a bit, you can eliminate your wrongInput method, by using a loop in the main method of your code, along with another question like "Do you want to do more calculations?"
The basic idea is: answer = ""
While answer does not equal "no"
Calculations logic(if statements, method calls etc...)
answer = result of question to continue
Just an idea to continue on what you've learned thus far.
You can also look into how to pass parameters, and use only one method called doCalculation() and pass it a value that tells which type of calculation to do. That would take out all of the repetition of code.
Greetings
Marcus