3
votes
6answers
193 views
Square root in PHP
Why is the output of sqrt not an integer for "16" in PHP?
Example
php > $fig = 16;
php > $sq = sqrt($fig); //should be 4
php > echo $sq;
4
php > echo is_int($sq); // should …
0
votes
4answers
60 views
finding objects within radius.
looking for a light weight way to find objects within a radius.
so far the answer that is obvious to me is go through each object, comparing its x and y position, with the center of the radius.
…
7
votes
11answers
745 views
Why do most programming languages only give one answer to square root of 4?
Most programming languages give 2 as the answer to square root of 4. However, there are two answers: 2 and -2. Is there any particular reason, historical or otherwise, why only one answer is usually …
