Tagged Questions

2
votes
12answers
460 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 n …
83
votes
24answers
30k views

Fastest way to determine if an integer’s square root is an integer

I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.s …
5
votes
5answers
2k views

What’s a good algorithm to determine if an input is a perfect square? [closed]

What's a way to see if a number is a perfect square? bool IsPerfectSquare(long input) { // TODO } I'm using C# but this is language agnostic. Bonus points for clarity and si …