Help for this page

Select Code to Download


  1. or download this
    my @b = map {sprintf("%.2f",$_)} @a;
    
  2. or download this
    my @b = split' ',sprintf" %.2f"x@a,@a;
    
  3. or download this
    s;;sprintf" %.2f"x@a,@a;e;my@b=split;