我正在編寫一個程序來查找數組的平均值以及大於該平均值的數字。我試圖用一種方法來寫這一切。但是,由於我被告知我所擁有的是非法表達,所以我在方法聲明中遇到了問題。我究竟做錯了什麼?方法聲明中的錯誤
public class Average {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
public double average(double[] number) {
int x = 0;
double sum = 0;
double[] numberList = new double[10]; //array to hold all numbers
double[] largerList = new double[10]; //array to hold numbers greater than the average
double[] smallerList = new double[10];
int averageIndex = 0;
int largerIndex = 0;
int smallerIndex = 0;
謝謝