牛客题霸--求平方根题解

求平方根
https://www.nowcoder.com/practice/09fbfb16140b40499951f55113f2166c

public int sqrt (int x) {
// write code here
String result = new StringBuilder(Math.sqrt(x)+"").toString();
StringBuilder aa = new StringBuilder();
for(int i = 0;i if(result.charAt(i)!='.'){
aa.append(result.charAt(i));
}else{
break;
}
}
return Integer.parseInt(aa.toString());
}

求平方根java里面有api可以调用,算是偷个懒吧...
然后遍历取出来小数点前的数字,拼接在StringBuilder里面,然后转换成整形就行了。

你可能感兴趣的:(牛客题霸--求平方根题解)