Java Utililty Methods sqr

List of utility methods to do sqr

  1. HOME
  2. Java
  3. s
  4. sqr

Description

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

Method

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


AltStyle によって変換されたページ (->オリジナル) /