Here you can find the source of sqrt(Short a)
Parameter | Description |
---|---|
a | the a |
public static double sqrt(Short a)
//package com.java2s; public class Main { /**/*from w ww. j ava2s . c o m*/ * Sqrt. * * @param a the a * @return the double */ public static double sqrt(Short a) { return Math.sqrt(a.doubleValue()); } /** * Sqrt. * * @param a the a * @return the double */ public static double sqrt(Integer a) { return Math.sqrt(a.doubleValue()); } /** * Sqrt. * * @param a the a * @return the double */ public static double sqrt(Float a) { return Math.sqrt(a.doubleValue()); } /** * Sqrt. * * @param a the a * @return the double */ public static double sqrt(Long a) { return Math.sqrt(a.doubleValue()); } /** * Sqrt. * * @param a the a * @return the double */ public static double sqrt(Double a) { return Math.sqrt(a); } }