public void computeAverage(String [] names, int [] scores, char [] grades){
int av = 0;
for (int i = 0; i < names.length; i++)
av = (scores[i]++ / 26);
System.out.print(av);
}
Hey guys, Above is my code to read a list of test scores and compute their average. There are 26 test scores. I am having trouble, Please help! Thanks