在switch(expression)语句中,expression的数据类型可以是哪些类型?
A. byte
B. short
C. int
D. char
E. 枚举
F. folat
G. double
H. String
下列写法中哪些是不对的?
A. byte = 30
B. byte b = 500;
C. long l = 2343223;
D. float f = 3.14;
已知int[]a=new int[100];下列给出的数组元素哪个是非法的
A. a[0]
B. a[1]
C. a[99]
D. a[100]
基本数据类型float的包装类是哪项?
A. Integer
B. Double
C. Float
D. Character