public class Example2_3 {
public static void main(String args[])
{
char c='A';
float f=123.45678f;
double d=123456.12345678;
long x=5678;
System.out.printf("%c%n%10.3f%n%f,%12d%n%d",c,f,d,x,x=x+2);/*输出f的结果是123.457,为什么缺少了6和8,以及d的输出结果是123456.123457,为什么缺少了6和8*/
}
}
