Help for this page

Select Code to Download


  1. or download this
    printf("A float: %12" . ($root_beer ? ".4f" : "s") . $/, ($root_beer || ''));
  2. or download this
    if ($root_beer) {
      printf("A float: %12.4f$/", $root_beer);
    } else {
      printf("A float: %12s$/", '');
    }
    
  3. or download this
    printf("A float: %12s$/", $root_beer ? sprintf("%12.4f",$root_beer) : '');
  4. or download this
    my $root_beer_str = $root_beer || ''; # change 0 to blank.
    $root_beer_str &&= sprintf("%12.4f", $root_beer);
    printf("A float: %12s$/", $root_beer_str);
    
  5. or download this
    printf("A float: %12s$/", ($root_beer || '') && sprintf("%12.4f", $root_beer));