嗨,我试图计算 if/else 但它不起作用。每次您尝试找到数字 32 时,它都应该计数 +1。这对我不起作用..所以...我希望它计算我为找到第 32 号所做的所有尝试,因此它显示我尝试了多少次。
谁能帮我吗?
String antwoord = null;
int getal = 32;
int count = 0;
if((Integer.parseInt(txt_input.getText().toString()) ) == getal)
{
antwoord = "Goed! in: " + count + " keer";
}
else if((Integer.parseInt(txt_input.getText().toString()) ) <= getal)
{
antwoord = "Hoger... ";
count++;
}
else if((Integer.parseInt(txt_input.getText().toString()) ) >= getal)
{
antwoord = "Lager... ";
count++;
}
count++;
lbl_hoger_lager.setText(antwoord);