How can we extract the decimal part of a floating point number and to store the decimal part and the integer part into seperate two integer variables?
feedback
|
|
You use the
You can also cast it to an integer, but be warned you may overflow the integer. The result is not predictable then. | |||
|
feedback
|
|
Try this:
For me, it produces:
Which appears to be what you're asking for. | |||||||||
feedback
|
|
The quick "in a nut shell" most obvious answer seems like:
You would change how many decimal points you want by changing the | |||||||||
feedback
|
|
I don't see how you could put the decimal part into an integer unless you knew how many digits you wanted to keep. Could you give a few examples? | |||||||||||||
feedback
|
|
Other answers have given you how to split the whole part from the fractional part. To do what you want with the fractional part, just keep multiplying it by 10 until the fractional part of that becomes 0. You may have to deal with overflow converting that to an integer (if you're working with doubles instead of floats). Also, I'm not sure how rounding error might screw with this - been a long time since I did numerical analysis. And even then it was pretty much the minimum to get a good grade in some class. I'll leave those problems and the actual implementation as an exercise for the reader. Is this homework by any chance? | |||
|
feedback
|
|
Well, floor() or casting will get you the integer part easily, but what do you actually expect to store in the "decimal" part? Not even including issues like floating point (im)precision, what do you want to happen when your candidate float is a repeating fraction or an irrational number? | |||
|
feedback
|
|
dim n as double' original number dim i as integer' integer portion dim d as double ' decimal portion i = int(n) d = n - i ' if n = 34.45 ' i = int(n) = 34 ' d = n - i = 34.45 - 34 = .45 | |||
|
feedback
|
|
dim n as double dim i as integer dim d as double i = int(n) d = n - i if n=34.45 then i=int(n)=34 and d=n-i= 34.45 - 34 = .45 | |||
|
feedback
|
|
Interesting, but what about this? casting does not work properly, modf() also does not work in this situation (I just want to take integral part only!)
Here was the output, please read carefully at the line: 10.010000 --> 1001.000000 --> 1000
| |||
|
feedback
|
|
I created a subroutine one using a double float, it returns 2 integer values.
| ||||
|
feedback
|
|
Maybe the best idea is to solve the problem while the data is in String format. If you have the data as String, you may parse it according to the decimal point. You extract the integral and decimal part as Substrings and then convert these substrings to actual integers. | |||
|
feedback
|
|
try this:
| |||
|
feedback
|