View Classes as Modules
public class TestSort {
public static void main(String[] args){
int[] a = new int[]{5,6,1,2,7,9,0,10};
Sort.exchangeSort(a);
for (int i=0; i<a.length; i++){
System.out.print(a[i]+" ");
}
}
}
Previous slide
Back to first slide
View graphic version