Help for this page

Select Code to Download


  1. or download this
    @prime = (1,2);
    map { push(@prime,$_) if (($_ % 2) != 0) } (2 .. 100);
    
  2. or download this
    my @prime=(1,2,grep $_%2, 2..100);