Logo

Programming-Idioms

  • Fortran
  • Java

Idiom #361 Test for perfect squarity

Set the boolean b to true if the integer n is a square number, false otherwise

E.g. 2025true

import static java.lang.Math.sqrt;
boolean b = sqrt(n) % 1 == 0;
math
b := round(sqrt(n)) ** 2 = n;

Lazy: just square the square root to see if you get the original value again

New implementation...
< >
steenslag