Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

232
votes
28answers
50k 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.sqrt() function, but ...
13
votes
3answers
6k views

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

Closed as Exact Duplicate: Fastest way to determine if an integer’s square root is an integer What's a way to see if a number is a perfect square? bool IsPerfectSquare(long input) { // ...
2
votes
12answers
751 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. ...
1
vote
6answers
539 views

Counting and generating perfect squares

I need some advice on how to write a Python program where it gives you a list of the first n perfect squares in list format. The output should look like this: How many squares?: 5 [1, 4, 9, 16, ...