some-usable-scripts/PERL_Language/maxcourt.pl
2011-02-20 18:52:23 +01:00

16 lines
147 B
Perl
Executable File

#!/usr/bin/perl -w
sub max{
my $max_actuel = shift @_;
foreach (@_)
{
if ($_ > $max_actuel)
{
$max_actuel = $_;
}
}
$max_actuel;
}