qq_慕婉清326697
2018-12-09 17:53
不知道哪里错了,求教大佬们
在for循环中,数组的索引是0开始的,你的i<scores.length-1;不然会数据越界。
慕用3359...
打出错i=scores.length-1;
2018-12-09 20:19:08
共 1 条回复 >
main中数组定义有误:int[] scores=new int[5];
方法定义中的形参有误 public void a(a[] scores);
for循环中数组的索引是从0开始的,i>=0;
Lydia5...
方法定义中的形参有误 public void a(a[] scores); 这个是错误的吧。 楼主的写法是对的,只是形式上要注意点。 一般我们会写int[] scores 而不是 int []scores, 毕竟int[] 表示数组,是一种数据类型,而scores 是一个变量名。
2018-12-11 16:44:15
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题
回答 2
回答 1
回答 5
回答 3