public class SortableIntArray implements Sortable { private int[] a; SortableIntArray(int num) { a=new int[num]; } public void sort() { // Sort the array using Bubble Sort // Last elements in the array are sorted first for(int i=0; i < a.length; i++) { for(int j=0; j