Help for this page

Select Code to Download


  1. or download this
    while (keys %numbers < 10) {
      my $num = int( rand 20 ) + 1;
      $numbers{$num}++;
    }
    
  2. or download this
    $numbers{int(rand(20))+1}++ while keys %numbers < 10;