这个是我的代码但是提示一直是Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 7 at com.imooc.Array.main(Array.java:10)
package com.imooc;
public class Array {
public static void main(String[]args){
int []score=new int []{61,23,4,74,13,148,20};
double plus=0;
double ave=0;
int max=score[0];
for(int i=0;i<=score.length;i++)
{if(score[i]>max)
max=score[i];
else
max=score[0];
}
System.out.println("数组中的最大值"+max);
int min=score[0];
for(int i=0;i<=score.length;i++)
{if(score[i]<min)
min=score[i];
else
min=score[0];
}
System.out.println("数组中的最小值"+min);
for(int i=0;i<=score.length;i++)
{
plus+=score[i];
}
ave=plus/4;
System.out.println("数组中的平均值"+ave);
}
}