Here you can find the source of sqrtInt(Integer num)
public static int sqrtInt(Integer num)
//package com.java2s; public class Main { public static int sqrtInt(Integer num) { Double rs = Math.sqrt(num.longValue()); return rs.intValue(); }//w w w . j a v a 2s .c om }