in reply to Re: Re: Finding Primes
in thread Finding Primes
Why not just use something like this:
#!/usr/bin/perl -wl sub logb10 { return log(+shift)/log(10); } print int(logb10(100) + logb10(100) + 1); print int(logb10(321) + logb10(311) + 1); print int(logb10(321) + logb10(312) + 1); __DATA__ output: 5 5 6
Or maybe we could just pull out the magic length method and stop trying to focus on a problem that isn't really a problem?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Finding Primes
by BrowserUk (Patriarch) on Aug 14, 2003 at 23:17 UTC |