挑错题: ABCD注释标注的哪行代码有错误?public class Test3{public sttic void main(String args[ ]) {char c='a';//Abyte b=128;//Bint height = 100;//Cfloat f=3.14F;//D}}
查看答案
挑错题: ABCD注释标注的哪行代码有错误?public class Test4{public sttic void main(String args[ ]) {char c=30320;//Abyte b=127;//Bint public = 100;//Cfloat f=3.14F;//D}}
A
B
C
D
" byte amount = 128; " 是正确的byte型变量声明。
A. 对
B. 错
对于" int [ ][ ] a={{1,2,3},{4,5,6,7}}; " ,a[0].length的值是3,a[1].length的值是4, a.length的值是2。
A. 对
B. 错
对于" int a[ ][ ]=new int[2][9]; " ,a[0].length、a[1].length的值都是9, a.length的值是2。
A. 对
B. 错