I'm creating a simple PHP program that does an action if (and only if) three random numbers compute to an integer. The random numbers are all integers, created with the rand() function. Without going into the specific details of the computation, the important thing (in terms of my problem) is that it includes the taking of a square root. Not being a very experienced PHP coder, the only square root function I know is sqrt(). The problem is, sqrt() returns a float, even when the input is an integer and output is exact. I briefly thought about converting the output to an integer (using something like intval(), but that won't work because that will convert all outputs to integers, making the test useless! Any ideas on how to do this? Thanks,
|
feedback
|
|
If you just want to determine if it is a perfect square, just determine if the
I don't know the php version of those functions, but perhaps you do? :) | |||||
feedback
|
|
That is a common problem when working with floating point. Just check that the float you get is very close to an integer; commonly this is done by checking that the fractional part is very small:
Here | |||||
feedback
|
|
Something along the lines of | |||||
feedback
|
floor($num)==$num? Or am i missing something... – Brad Christie Mar 1 '11 at 23:50==for floats is almost always (read: always) a bad idea. Compare using a delta. See e.g. stackoverflow.com/questions/4682889/is-floating-point-ever-ok – sleske Mar 1 '11 at 23:56