Enter a name, enter grade, and enter 7 test scores.
A program that calculates average test scores.
I'd like to get the average, except for the highest and lowest scores. How should I do it?

Code:
import java.util.Scanner;

public class StudentDemo {
	Scanner s = new Scanner(System.in);
	Student[] stList = new Student[10];
	int cnt = 0;
	public static void main(String[] args){
...