题目:求平方根。。。必须返回的是整数,就是小数点要舍弃。 思路:直接用轮子。。。sqrt() 代码: class Solution { public int mySqrt(int x) { return (int)Math.sqrt(x); } }