牛顿法求平方根

it2022-05-05  100

public int mySqrt(int x) {      long a=x;      while (a * a > x) {          a= (a + x /a) / 2;      }      return (int) a;      }


最新回复(0)