Help for this page

Select Code to Download


  1. or download this
        if($input =~ /[^1-9]/){  # Used to check for input words.
        ...
    ...
        if($input =~ /[1-9]/){
             print "\n";       
        }
    
  2. or download this
       if($input =~ /[^1-9]/){  # Used to check for input words.
        ...
    ...
        else {
             print "\n";       
        }