Descrizione
Randomizza un dato array.
Codice
my @arr = ("Napoli", "Milano", "Londra", "New York");
my $deck = \@arr;
my $i = @$deck;
while ($i--) {
my $j = int rand (4);
@$deck[$i,$j] = @$deck[$j,$i];
}
print "@arr\n";
system("pause");
"All in V3rgil", "Tutto su Tutto"
Descrizione
Randomizza un dato array.
Codice
my @arr = ("Napoli", "Milano", "Londra", "New York");
my $deck = \@arr;
my $i = @$deck;
while ($i--) {
my $j = int rand (4);
@$deck[$i,$j] = @$deck[$j,$i];
}
print "@arr\n";
system("pause");
Pubblicato da V3rgil alle 8/10/2008 02:55:00 PM
Etichette: Perl, Programmazione, Scripts
0 commenti:
Posta un commento