问答详情
源自:7-1 编程练习

请问一下哪里错了呀

https://img1.mukewang.com/5c0ce5e90001f4ad07380890.jpg不知道哪里错了,求教大佬们

提问者:qq_慕婉清326697 2018-12-09 17:53

个回答

  • 慕用3359952
    2018-12-09 20:18:07

    在for循环中,数组的索引是0开始的,你的i<scores.length-1;不然会数据越界。

  • 慕用3359952
    2018-12-09 20:02:34

    main中数组定义有误:int[] scores=new int[5];

    方法定义中的形参有误 public void a(a[] scores);

    for循环中数组的索引是从0开始的,i>=0;