描述实现函数 int sqrt(int x).计算并返回 x 的平方根(向下取整) 方法1:直接循环 import java.util.*; public class Solution { /** * * @param x int整型 * @return int整型 */ public int sqrt (int x) { for (int i = 1; i <= x; i++) { if(i * i == x) { return i; } if(i * i > x) { return i -…