Drucken Sie bis zu 2 Dezimaler in Java aus
System.out.printf("%.2f", value);
Vivacious Vendace
System.out.printf("%.2f", value);
printf("%. 2f", value);
double input = 3.14159265359;
System.out.format("double : %.2f", input); // 3.14
System.out.println("double : " + String.format("%.2f", input)); // 3.14