Help for this page

Select Code to Download


  1. or download this
    if ($answer !~ /\D+/) { ## if answer doesn't have any non-digits
            print "Please enter a number only\n"; ## Really?
            next;
        }
    
  2. or download this
    if ($answer =~ /\D/) { 
    ## if answer has any non-digits 
            print "Please enter a number only\n";
            next;
        }