Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Percentages to Fractions

by I0 (Priest)
on Feb 22, 2004 at 05:29 UTC ( [id://330889]=note: print w/replies, xml ) Need Help??


in reply to Percentages to Fractions

use strict; use POSIX; sub cf{ my($v,$p) = @_; my $i=int $v; $v -= $i; if( fabs($v)>$p ){ my($a,$n,$d)=cf(1/$v,$p*(1+abs$i)); return $i,$d,$a*$d+$n }else{ return $i,0,1; } } while( <DATA> ){ chomp; my ($i,$n,$d) = cf($_,.001); $n+=$i*$d; print "$_:\t$n/$d\n"; } __DATA__ 0.035 0.037 0.039 0.041 0.043 0.046 0.048

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://330889]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (2)
As of 2024-04-25 05:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found