Help for this page

Select Code to Download


  1. or download this
    printf +($root_beer ? "%12.4f" : " "x12)."\n", $root_beer;
    
  2. or download this
    if ($root_beer) { printf "%12.4f\n", $root_beer }
    else { print " "x12 . "\n"; }