Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    #
    #
    ...
        $price = $1 . "." . "00";
    }
    print "$price\n";
    
  2. or download this
    if (defined $2 ) {
        $price = $1 . "." . $2;
    }
    else {
        $price = $1 . "." . "00";
    }