Java中的精确处理

让我们看看如何在Java中处理精度-

示例

import java.io.*;
import java.lang.*;
public class Demo{
   public static void main(String[] args){
      double my_val = 34.909;
      System.out.println("The formatted value of 34.909 is ");
      System.out.println(String.format("%.7f", my_val));
      double my_val_2 = 12.56;
      System.out.println("The formatted value of 12.56 is ");
      System.out.println(String.format("%.9f", my_val_2));
   }
}

输出结果

The formatted value of 34.909 is
34.9090000
The formatted value of 12.56 is
12.560000000

名为Demo的类包含主要函数,在该函数中声明了一个双精度整数,并通过指定应格式化的数字对其进行格式化。类似地,定义了另一个double变量,并将其格式化并打印在屏幕上。