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

数组赋值问题

https://img.mukewang.com/5b4f49bc000176c214120747.jpg这是为什么呢 求大佬解释

提问者:我是孙康慧呀 2018-07-18 22:08

个回答

  • 张小布0
    2018-07-19 14:29:58
    已采纳

    int[] scoress 是个数组,scores[i]是一个数字,所以会报一个类型转换错误,你可以这样写

    在for循环的外面 

    int []scoress=new int [scores.length];

    然后在for循环里面写

    scoress[i] = scores[i]

  • 劳元源
    2018-07-19 14:28:17

    报的错已经说的很明白,第12行出错,错误原因是类型转换错误。题主写的是int[] scoress=scores[i],等号左边是一个数组(int[ ]),右边是一个数(int),怎么能赋值呢?我的回答能理解吗?

  • 轩墨vision
    2018-07-19 10:34:33

    在for循环外定义int []scoress=new int [scores.length];

  • qq_微笑_157
    2018-07-19 10:23:25

    int[] scoress 写在for循环的外面 ,里面写scoress[i]=scores[i]    这样试一下吧