Tagged Questions

4
votes
6answers
618 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
3answers
170 views

php sqrt function that returns an integer?

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 ...