Help for this page

Select Code to Download


  1. or download this
    $array[$i] = abs($n);
    
  2. or download this
    use POSIX qw( ceil floor );
    
    ...
    $array[$i] = sprintf('%d', abs($n));  # Rounds
    $array[$i] = ceil(abs($n));           # Finds ceiling
    $array[$i] = floor(abs($n));          # Finds floor