该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
程序:
public class Sort {
public void bubbleSort(int arr[]) {
int temp;
for(int pass=1; pass
for(int pair=1; pair
if(arr[pair-1]>arr[pair]) {
temp=arr[pair-1];
arr[pair-1]=arr[pair];
arr[pair]=temp;
}//if
}//for
}//for
public void print(int[] arr) {
for(int k=0; k
System.out.println(arr[k]+"\t");
System.out.println();
}
public static void main(String args[]) {
int arr[]={2,5,3,8,7,6,9,10,49,25};
Sort sorter=new Sort();
System.out.println("数组排序前: "+"\t");
sorter.print(arr);
sorter.bubbleSort(arr);
System.out.println("数组排序后: "+"\t");
sorter.print(arr);
}
}
运行为什么总是提示:java14:public void print(int[] arr) 非法的表达式的开始?请问是什么原因?新手