Help for this page

Select Code to Download


  1. or download this
    if ($Number % 5 == 0){
       ...;
    }
    
  2. or download this
    if ($Number =~ /^-?[0-9]*[05]$/){
       ...;
    }
    
  3. or download this
    if ($Number % 5 == 0 and $Number >= 0){
       ...;
    }
    
  4. or download this
    if ($Number =~ /^[0-9]*[05]$/){
       ...;
    }