Help for this page

Select Code to Download


  1. or download this
    push( @array, sprintf( "%.5f", "$number\n") );
    
  2. or download this
    push( @array, (sprintf "%.5f"), "$number\n");
    
  3. or download this
    push @array, sprintf( "%.5f", $number) . "\n";
    
  4. or download this
    push @array, sprintf( "%.5f%s", $number, "\n");