我正在编写从给定的 3 个数字中查找中间元素的方法,但 eclipse 不允许我这样做。请帮帮我我该怎么办?代码如下:
public class MiddleElement {
public static void main(String[] args) {
int x = 5;
int y = 1;
int z = 4;
int[] a = {x,y,z};
int length = a.length;
Bubblesort(a,length);
System.out.println("Sorted Elements are:");
for(int i=0;i<length;i++){
System.out.print(a[i]);
}
}
//Method to Bubble Sort the Elements
public static void Bubblesort(int[] a , int len){
int i,j,temp;
for (i = 0; i < len;i++){
for( j = 1; j < (len-1); j++){
if(a[j-1]>a[j]){
temp = a[j-1];
a[j-1] = a[j];
a[j] = temp;
}
}
}// End of Method Bubblesort
public static int findMiddle(int[] a){
}
}// End of Main Method
}
在此先感谢您的帮助。