Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
import java.text.DecimalFormat;
public class Hauptprogramm {
public static void main(String[] args) {
double a = 25.0000;
DecimalFormat df = new DecimalFormat("#.0000");
System.out.println(df.format(a));
}
}
public class Hauptprogramm {
public static void main(String[] args) {
double a = 25.0000;
String s = String.format("%.4f", a);
System.out.print(s);
}
}