大数快速开方

大数快速开方!


import java.math.BigInteger;
import java.util.Scanner;



public class Main
{
	public static void main(String[] args)
 	{ 
        Scanner sc = new Scanner(system.in);
        BigInteger N = sc.nextBigInteger();
        System.out.println(sqrt(N));
 	}
	
	public static BigInteger sqrt(BigInteger input)
	{
	    BigInteger x0 = BigInteger.TEN.pow((int)Math.sqrt(input.toString().length()));
	    BigInteger x1 = BigInteger.valueOf(11);
        while(!x0.equals(x1) && !x0.equals(x1.add(BigInteger.ONE)))
        {
        	x0 = new BigInteger(x1.toString());
        	x1 = x1.add(input.divide(x1)).divide(new BigInteger("2"));
        }
        return x1;
	}
}

相关文章

自1998年我国取消了福利分房的政策后,房地产市场迅速开展蓬...
文章目录获取数据查看数据结构获取数据下载数据可以直接通过...
网上商城系统MySql数据库设计
26个来源的气象数据获取代码
在进入21世纪以来,中国电信业告别了20世纪最后阶段的高速发...