[Perl][pugs] 100までの素数 Perl6 / pugs 版
Posted by
酒日記 はてな支店
at
2006-06-26 22:50
Perl6 (pugs) で動くようにしてみた。 #!/usr/bin/pugs my $max = @*ARGS.pop || 100; my @primes = (2); for (3..$max) -> $n { @primes.push($n) if @primes.before_incl:{ sqrt $n <= $_ }.all:{ $n % $_ }; } @primes.join(' ').say; sub all (@lis
Parent entry
キミならどう書く 2.0 - ROUND 1 -