Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
import javax.swing.JOptionPane;

public class PayCheckStatic
{
    public static void main(String[] args)
    {

        while (name!=null)
    {
            String name = JOptionPane.showInputDialog("Please enter the next employees name" );
            String wage = JOptionPane.showInputDialog("Please enter their hourly wage?");
            String hoursWorked = JOptionPane.showInputDialog ("How many hours did they work this last work?");

            double wages = Double.parseDouble(wage);
            double hours = Double.parseDouble(hoursWorked);

            calculatePay(name,wages,hours);
    }
}

private static void calculatePay(String name,double wages,double hours)
{
if (hours > 40)
        {
         double pay = ((wages * 40)+((hours - 40)*(1.5 * wages)));
        JOptionPane.ShowMessageDialog (null,name + "'s pay is £" + pay);
        }
    else
        {
        double pay = (wages * hours);
        JOptionPane.ShowMessageDialog (null,name + "'s pay is £" + pay);
        }
}

}

For some reason my code won't compile and it is coming up with cannot find symbol errors, and I can't work out why. The error is showing 3 times, with 2 of them on the message dialog boxes. Any tips as to how I can fix it?

share|improve this question
2  
Which lines are causing the errors? Can you show the exact error messages? These are the keys both for you and us to help find a solution. While you might get a solution here this time, next time you ask a question about an error (or about anything), please include all relevant information. – Hovercraft Full Of Eels May 15 '12 at 16:53

3 Answers

Your main method starts with:

while(name != null)

but you have not declared name yet. You need to move the String name line before you while loop starts.

share|improve this answer

As other have pointed out, you need fix your while loop in main because of name not being defined.

However, there is also another error: your calls to JOptionPane.ShowMessageDialog() are incorrect.

The correct method you should be calling is JOptionPane.showMessageDialog() (notice the camel case method name instead of pascal case)

share|improve this answer

If the code you posted is indeed your full program, then you have an undefined name in your main() function.

You will either have to add a static variable names name in the class, so the static main() can access it or declare it locally in main(). On a second look, you do have a String name declared, but after you are trying to use it. Move the declaration of name before the if() in main()

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.