Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    for my $array (@arrays) {
        print "@$array: ", is_divisible($array) ? 'yes' : 'no', "\n";
    }