change this
Quote:
// Prompt the user for their wanted salary
System.out.println ("How much money would you like to"
+ " make in a year");
|
to this
Code:
// Prompt the user for their wanted salary
System.out.println ("How much money would you like to" +
" make in a year");
note the movement of the +
Also when posting something like this, where you are getting errors, please post the error message along with the line number. It makes finding the problem easier and faster