习题 6-4 的D选项那里错了
int [] score={1,2,3,4};
int score为变量,而非数组,数组必须加 []
缺少[]
int[ ] score={ 78, 23, 44, 78 };
左边缺[]
简单说缺[]
选项 D 声明数组的语法错误,应为int[ ] score={ 78, 23, 44, 78 };