private static float findTotal(float[] grades)
{
float total = 0;
for(float grade : grades)
total += grade;
return total;
}
How do I find the total and then subtract the minimum and maximum values found from the other methods?
This post has been edited by twinkestar: 20 October 2009 - 12:41 AM

New Topic/Question
Reply




MultiQuote









|