入力を受け取る多くのフィールド、発生するプロセス、そして出力を表示するフィールドがあります。私の問題は、何らかの理由で、最も近い整数ではなく、常に math.round が切り捨てられているように見えることです。
ここに例があります
private void method(){
int X= Integer.parseInt(XjTF.getText());
int Y= Integer.parseInt(YjTF.getText());
float Z =(X+Y)/6;
int output = Math.round(Z);
OutputjTF.setText(Integer.toString(output)+" =answer rounded to closest integer");
}