Help for this page

Select Code to Download


  1. or download this
    $result =
        ($major_length == 4800) ? 18 :
        ($major_length ==  8552 and $val == 4) ? 33 :
        die "not handled";
    
  2. or download this
    $result =
        ($major_length == 4800) ? 18 :
        ($major_length ==  8552) ? ($val == 4 ? 33 : $val == 1 ? 18 : die 
    +"not handled" ) :
        die "not handled";