 
		weixin_宝慕林2387273
2019-11-14 14:15
习题 6-4 的D选项那里错了
 
				int [] score={1,2,3,4};
 
				int score为变量,而非数组,数组必须加 []
 
				缺少[]
 
				int[ ] score={ 78, 23, 44, 78 };
 
				左边缺[]
 
				简单说缺[]
 
				选项 D 声明数组的语法错误,应为int[ ] score={ 78, 23, 44, 78 };
Java入门第一季(IDEA工具)
1168090 学习 · 18754 问题
相似问题