all groups > flash actionscript > august 2006 >
You're in the

flash actionscript

group:

Help Convert decimal to fraction


Re: Help Convert decimal to fraction SMB
8/21/2006 4:31:16 PM
flash actionscript:
[quoted text, click to view]

http://www.lookmumimontheinternet.com/blog/?p=31

Help Convert decimal to fraction jeans_mac
8/21/2006 10:14:02 PM
Need covert decimal de piont float to fraction
thats no easy for me.
you like help me with my probleam
I thank you very much

sorry for me English
Re: Help Convert decimal to fraction kglad
8/22/2006 2:20:59 AM
the following function returns an array who's first element is the numerator
and whose 2nd element is the denominator:




function fractionF(num) {
newNum = num;
decNum = 1;
while (Math.round(newNum) != newNum) {
newNum *= 10;
decNum *= 10;
}
return [newNum, decNum];
}
AddThis Social Bookmark Button