我已经找了40多分钟试图在这个网站上找到可能与我的问题有关的答案,但没有用。
我很难过。我正在尝试将程序转换为GUI。我正在使用Textpad,它在编译时告诉我变量已在main方法中定义。然后当转换为int或double时,它告诉我它找不到符号并指向我想要转换的变量。然后在我的计算过程中,它告诉我二进制运算符'*'的错误操作数类型。
import javax.swing.JOptionPane;
public class PayrollGUI {
// calculates payroll
public static void main (String [] args) {
String name = JOptionPane.showInputDialog ("Employee's Name: ");
int name = Integer.parseInt(nameString);
String hours = JOptionPane.showInputDialog ("Number of hours worked in a week (e.g., 10: ");
int hours = Integer.parseInt(hoursString);
String payRate = JOptionPane.showInputDialog ("Hourly pay rate (e.g., .6.75: ");
double payRate = Double.parseDouble(payRateString);
String federalTaxRate = JOptionPane.showInputDialog ("Federal tax witholding rate (e.g., .20: ");
double federalTaxRate = Double.parseDouble(federalTaxRateString);
String stateTaxRate = JOptionPane.showInputDialog (" State tax witholding rate (e.g., .09: ");
double stateTaxRate = Double.parseDouble(stateTaxRateString);
//calculate witholdings, grosspay and netpay
double federalWitholding = federalTaxRate * (hours * payRate);
double stateWitholding = stateTaxRate * (hours * payRate);
double grossPay = hours * payRate;
double netPay = grossPay - withholdings;
double witholdings = federalWithodling + stateWitholding;
//format to keep two digit decimal
witholdings = (int) (witholdings * 100) /100.0;
netPay = (int) (netPay * 100) / 100.0;
grossPay = (int) (grossPay * 100) / 100.0;
federalWitholding = (int) (federalWitholding * 100) / 100.0;
stateWitholding = (int) (stateWitholding *100) / 100.0;
/*String output = (null);
String output = (null);*/
String output = "Employee Name: " + name +
"/nHours Worked: " + hours +
"/nPay Rate: $" + payRate +
"/nGross Pay: $" + grossPay +
"/nDeductions:" +
"/n Federal Witholding: $" + federalWitholding +
"/n State Witholding : $" + stateWitholding +
"/n Total Deductions : $" + witholdings +
"/n Net Pay: $";
JOptionPane.showMessageDialog(null, output);
}//end main
}//end Payroll
答案 0 :(得分:5)
String name = ...;
int name = ...;
不能这样做。
将String name
替换为String nameString
,因为这是您在使用Integer.parseInt
时尝试解析的变量! (并且不要忘记所有其他变量!)
e.g。
带有String hours
的 String hoursString
String payRate
String payRateString
的{{1}}
String federalTaxRate
String federalTaxRateString
的{{1}}
String stateTaxRate
与String stateTaxRateString
答案 1 :(得分:5)
答案 2 :(得分:1)
在一个方法中不能有两个相同的变量名。在您的代码中,您有许多重复变量,就像下面的变量一样。您不能在同一方法中使用两个name
变量。
String name = JOptionPane.showInputDialog ("Employee's Name: ");
int name = Integer.parseInt(nameString);
如果您使用任何IDE for Java,如Eclipse,您可以轻松解决这些编译问题,而不是Textpad。