欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

LeetCode【69】 Sqrt(x)

程序员文章站 2022-03-19 11:57:20
...

LeetCode【69】 Sqrt(x)


public class Solution {
    public int mySqrt(int x) {
        return (int)Math.sqrt(x);
    }
}

这个题目很水,只要调用java的函数即可,但是要注意和函数返回类型相同,对sqrt(x)进行类型转换。