import java.io.*;
class BubbleSort
{
public static void main (String[] args) {
Integer a[]={20,3,-2,60,15};
Integer temp;
for(int i=0;i
for(int j=0;j
if(a[i] {
temp=a[i];
a[i]=a[j];
a[j]=temp;
}
}
}
//OutPut
for(int k=0;k
}
}