A. true B. default C. _int D. good-class
A. float foo=1; B. float foo=1.0; C. float foo=2e1; D. float foo=2.02;
A. float foo=1e2; B. float foo=3.14; C. float foo=3.03d D. float foo=0x0123;
A. char ch="R"; B. char ch='\\'; C. char ch='abcd'; D. char ch="abcd";
A. 对于"int a[][]new int[6][4];"a.length的值是6 B. 对于"int a[][]=new int[2][9];"a.length,a[0].length,a[1].length的值都是9 C. 对于"int[] a=new int[3];"a[0],a[1],a[2]的值都是0 D. "float height=1e1F;"是正确的float变量的声明