Olá, sou novo no fórum e gostaria de saber se alguém pode me ajudar com o código abaixo ????
Gostaria de saber como arredondar o campo "Resultado:" para "24".
Exemplo: Peso:82, Altura:1.82, Resultado:24.755464315903875
Agradeço antecipadamente.
O código é o Seguinte:
package calculator;
import javax.microedition.midlet.MIDlet;
import javax.microedition.lcdui.*;
public final class CalculatorMIDlet extends MIDlet implements CommandListener {
private static final int NUM_SIZE=20;
private final Command exitCmd = new Command("Exit", Command.EXIT, 2);
private final Command calcCmd = new Command("Calc", Command.SCREEN, 1);
private final TextField t1 = new TextField("Peso:", "", NUM_SIZE, TextField.DECIMAL);
private final TextField t2 = new TextField("Altura:", "", NUM_SIZE, TextField.DECIMAL);
private final TextField tr = new TextField("Resultado:", "", NUM_SIZE, TextField.UNEDITABLE);
private final ChoiceGroup cg = new ChoiceGroup("", ChoiceGroup.POPUP,
new String[] {"add", "subtract", "multiply", "divide"}, null);
private final Alert alert = new Alert("Error", "", null, AlertType.ERROR);
private boolean isInitialized = false;
protected void startApp() {
if (isInitialized) {
return;
}
Form f = new Form("Calculadora de IMC");
f.append(t1);
f.append("\n");
f.append(t2);
f.append("\n");
f.append(tr);
f.addCommand(exitCmd);
f.addCommand(calcCmd);
f.setCommandListener(this);
Display.getDisplay(this).setCurrent(f);
alert.addCommand(new Command("Back", Command.SCREEN, 1));
isInitialized = true;
}
protected void destroyApp(boolean unconditional) {}
protected void pauseApp() {}
public void commandAction(Command c, Displayable d) {
if (c == exitCmd) {
destroyApp(false);
notifyDestroyed();
return;
}
double res = 0.0;
double quad;
try {
double n1 = getNumber(t1, "First");
double n2 = getNumber(t2, "Second");
switch (cg.getSelectedIndex()) {
case 0: quad = n2 * n2; res = n1 / quad; break;
default:
}
} catch (NumberFormatException e) {
return;
} catch (ArithmeticException e) {
alert.setString("Divide by zero.");
Display.getDisplay(this).setCurrent(alert);
return;
}
String res_str = Double.toString(res);
if (res_str.length() > tr.getMaxSize()) {
tr.setMaxSize(res_str.length());
}
tr.setString(res_str);
}
private double getNumber(TextField t, String type)
throws NumberFormatException {
String s = t.getString();
if (s.length() == 0) {
alert.setString("No " + type + " Argument");
Display.getDisplay(this).setCurrent(alert);
throw new NumberFormatException();
}
double n;
try {
n = Double.parseDouble(s);
} catch (NumberFormatException e) {
alert.setString(type + " argument is out of range.");
Display.getDisplay(this).setCurrent(alert);
throw e;
}
return n;
}
} // end of class 'CalculatorMIDlet' definition
[size="11"][color="red"]* Editado: Lembre-se de utilizar BBCode em seus códigos - marcossousa[/color][/size] :joia: