Tagged Questions
2
votes
12answers
767 views
Can I rely on this to judge a square number in C++?
Can I rely on
sqrt((float)a)*sqrt((float)a)==a
or
(int)sqrt((float)a)*(int)sqrt((float)a)==a
to check whether a number is a perfect square? Why or why not?
int a is the number to be judged. ...