- 论坛徽章:
- 3
|
发错版块了吧 - #!/usr/bin/perl
- use strict;
- use warnings;
- my ( $run_lottery, $group_lottery, $hash ) = ( 6, 3 ); #每组6个,一共3组
- my $lottery_num = "10,32,11,21,33,05";
- for my $lottery ( 1 .. $group_lottery ) {
- for ( 1 .. $run_lottery ) {
- my $rand_num = sprintf "%02d", 1 + int( rand(42) );
- redo if $hash->{$lottery}->{$rand_num}++;
- }
- }
- for my $lottery ( keys %$hash ) {
- my $hit_count = 0;
- for ( keys %{ $hash->{$lottery} } ) {
- print "$_ ";
- ++$hit_count if $lottery_num =~ /$_/;
- }
- print "|$hit_count\n";
- }
复制代码- 22 33 34 10 17 29 |2
- 27 18 08 30 17 15 |0
- 30 10 26 23 09 17 |1
复制代码 |
|