Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

How do I convert a number to a fraction and vice versa?

by PodMaster (Abbot)
on Jul 26, 2003 at 10:28 UTC ( [id://278079]=perlquestion: print w/replies, xml ) Need Help??

PodMaster has asked for the wisdom of the Perl Monks concerning the following question: (numbers)

Originally posted as a Categorized Question. Body may be blank.

  • Comment on How do I convert a number to a fraction and vice versa?

Replies are listed 'Best First'.
Re: How do I convert a number to a fraction and vice versa?
by PodMaster (Abbot) on Jul 26, 2003 at 10:32 UTC
    use Number::Fraction:
    use Number::Fraction; my @dimensions = ( 320, 240 ); my $aspect = Number::Fraction->new( @dimensions ); print join('x', @dimensions); print $aspect; print $aspect->to_num;
    320x240 4/3 1.33333333333333

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-23 19:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found