Thread
maximalwert ermitteln
(18 answers)
Opened by
kale_1990
at
2006-09-15 16:01
bo
2006-09-15 16:57
User since
2006-05-09
76 Artikel
BenutzerIn
Code: (
dl
)
1
2
3
4
my @array = qw(122 63 25 48 323 224);
@array = sort { $a <=> $b } @array;
print $array[$#array];
View full thread
maximalwert ermitteln