Kommastellen nach double

Knothead

Grünschnabel
hallo

ich schreibe ein RentenRatenProgramm das mit double arbeitet und
double Ergebnis ausgibt
nun möchte ich die ausgabe auf 3 Stellen nach dem Komma begrenzen

how to?


txc
 
Hallo!

Versuchs mal mit:
Code:
import java.text.DecimalFormat;

public class DecimalFormatDemo {

	public static void main(String[] args) {
		DecimalFormat df = new DecimalFormat("#.000");
		double d = 123.456789D;
		System.out.println(df.format(d));
	}
}

Gruß Tom
 
Zurück