import java.util.*; public class SortIntBack { public static void main(String[] args) { Integer[] intArgs = new Integer[args.length]; for (int i=0; i s = new Sort (intArgs, new Comparator() { public int compare(Integer i, Integer j) { return ((i < j) ? 1 : ((i == j) ? 0 : -1)); } }); s.print(); } }