import javax.swing.JOptionPane;
public class Arraygedoens {
public static void main(String[] args) {
int bmi;
String eingabe1= JOptionPane.showInputDialog(null,"Geben Sie Ihr Gewicht ein(KG)",
"Gewicht", JOptionPane.PLAIN_MESSAGE);
String eingabe2 = JOptionPane.showInputDialog(null,"Geben Sie Ihre Höhe ein (Meter)",
"Höhe", JOptionPane.PLAIN_MESSAGE);
int gewicht = Integer.parseint(eingabe1);
int höhe = Integer.parse(eingabe2);
bmi = gewicht/(höhe*2);
if(bmi<20){
JOptionPane.showInputDialog(null,"Bisch ein bissl Schlank he",
"BMI", JOptionPane.PLAIN_MESSAGE);
} else if (bmi>20) {
JOptionPane.showInputDialog(null,"Dein Gewicht ist passend", "BMI",
JOptionPane.PLAIN_MESSAGE);
} else if(bmi>40) {
JOptionPane.showInputDialog(null,"Du bist zu FETT!)", "BMI",
JOptionPane.PLAIN_MESSAGE);
}
}
它總是向我顯示一條錯誤消息,告訴我它在解析字符串時找不到符號,有人可以幫我嗎?我的錯誤在哪裏? (BMI計算器)
發佈錯誤.. –
有至少一個錯字:'的Integer.parseInt(eingabe1) ;''parseInt'中應該有一個大寫'I'。 –
謝謝你!工作。 –