Yes I have this in an array...
// Average Grade
for(int i = 0; i<10; i++);
{
System.out.print("Average Grade" + scoreArray[i]/10);
}
I am wanting to divide by 10 (where the 10 is) I know that it want let me but how would you divide a list of numbers that is in an array? or format it to?