package com.company; import java.text.DecimalFormat; public class Main { public static void main(String[] args) { // write your code here double h=10*3*3/2; DecimalFormat df=new DecimalFormat("#.00"); System.out.println("height="+df.format(h)); } }
package com.company; import java.text.DecimalFormat; public class Main { public static void main(String[] args) { // write your code here double h=10*3*3/2; DecimalFormat df=new DecimalFormat("#.00"); System.out.println("height="+df.format(h)); } }
转载于:https://www.cnblogs.com/zhuzehua/p/9669525.html