DAIC 当前离线
中将
CUer 当前离线
上尉
use strict; use warnings; my $max = 8; my @array = (0..9,'a'..'z','A'..'Z'); my $str = join '', map { $array[int rand @array] } 0..($max-1); print "$str\n";复制代码
TOP
523066680 (消遣区)当前离线
版主
There is more than one way to do it.