// This is a buuble sort program made with JAVA import java.lang.*; public class BubbleSort { public static void main(String arg[]) { int a[]={30,60,35,20,45,32,50}; System.out.println("Array Before Sorting"); for(int i=0;ia[j]) { t = a[j-1]; a[j-1] = a[j]; a[j]= t; } } } } }