Help for this page

Select Code to Download


  1. or download this
    # $z is $x divided by $y, unless $y is zero, in which case $z should b
    +e zero too
    if ( $y == 0 ) {
       $z = 0;
    ...
    else {
       $z = $x / $y;
    }