Help for this page

Select Code to Download


  1. or download this
     @$array[$i,$j] = @$array[$j,$i];
    
  2. or download this
     my $temp =  $array->[$i,$j];
     $array->[$i,$j] = $array->[$j,$i];
     $array->[$j,$i] = $temp;