Java sqr Sqr(double dblX)

Here you can find the source of Sqr(double dblX)

Description

Sqr

License

Apache License

Declaration

public static double Sqr(double dblX) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static double Sqr(double dblX) {
        return dblX * dblX;
    }//w  w  w . j  a  v  a 2 s .  c  o  m
}

Related

  1. sqr(double x)
  2. sqr(double x)
  3. sqr(final float f)
  4. sqr(final int value)