摘要:
1 /* 2 * 3 * test the accuracy change of conversion from float to dobule 4 * 5 */ 6 public class TestFloat{ 7 8 public static void main(String[] args){ 9 float f1 = 2.2f;10 System.out.printf("before conversion float1 : %10.9f \n" , f1);11 float f3 = f1;1...
阅读全文