我正在尝试用一些算法计算 PI,但主要是以 30 的精度显示它。我试图用format
etc 输出一个字符串。但似乎最大精度double
为 15。是否有任何类或某种方法帮我解决这个问题?
我已经尝试过:
public class Challenge6PI {
public static void main(String[] args){
System.out.format( "%.30f",
Math.log(Math.pow(640320, 3) + 744) / Math.sqrt(163));
}
}