for(int i=0;i < n-1;i++)
{
  for(int j=0;j < n;j++)
{
     if (arr[i] > arr[j])  
{
        swap(arr[i],arr[j]);
      }
}
}