這是方程 (輸入/ 750)* 6 這裏,任何值i作爲輸入輸入,它將由750分,然後通過6 此相乘是的樣品,使該計算我寫的代碼我想用java
JButton btnCalculate = new JButton("Calculate");
btnCalculate.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try{
String r=textFieldInput.getText();
int u=Integer.parseInt("750");
String z1 = r/u *6; /*on this line, i'm getting this error "The operator/is undefined for the argument type(s) String, int" */
textField.setText(z1);
}catch(Exception ei) {
JOptionPane.showMessageDialog(null, "Invalid Input: Please Enter Number");
}
請問我該從哪裏出發?
錯誤告訴你到底發生了什麼問題!對不起,你在編碼時沒有想到。批判性地查看錯誤消息,然後嘗試進行所需的微小更正。 –
'String.valueOf(Integer.parseInt(r)/ u * 6)' – XtremeBaumer
@XtremeBaumer:不,他應該將'r'解析爲int或double。 'double doubleR = Double.parseDouble(textFieldInput.getText());' –