Java Utililty Methods sqr

List of utility methods to do sqr

Description

The list of methods to do sqr are organized into topic(s).

Method

doubleSqr(double dblX)
Sqr
return dblX * dblX;
doublesqr(double x)
Returns square of specified number.
return (x * x);
doublesqr(double x)
sqr
return x * x;
floatsqr(final float f)
Returns square for specified float number.
return f * f;
intsqr(final int value)
sqr
return value * value;
floatsqr(float a)
sqr
return a * a;
floatsqr(float x)
sqr
return x * x;
intsqr(int V)
Returns the square of a number.
return V * V;
intsqr(int x)
Returns the square of the specified integer.
return x * x;
intsqr(int x)
Calculate a square of a number
return x * x;