1 /** 2 * 基本数据类型之浮点类型 3 */ 4 public class DataTypeDemo2 { 5 public static void main(String[] args) { 6 double d1 = 3; 7 System.out.println(d1);//3.0 8 double d2 = 2.4; 9 d1 = d1 - d2;10 System.out.println(d1);//0.600000000000000111 float f1 = 3.0F;//声明一个float类型变量需要加后缀F12 float f2 = 2.4F;13 f1 = f1 - f2;14 System.out.println(f1);//0.599999915 System.out.println(5/2);//216 /*17 * 低精度的数据类型与高精度做运算时,返回结果都18 * 是高精度的值19 */20 System.out.println(5.0/2);//2.5 21 double max = Double.MAX_VALUE;22 System.out.println(max*max);//Infinity 无限大23 double sqrt = Math.sqrt(-3);24 System.out.println(sqrt);//NaN(Not A Number)25 }26 }