高精度除高精度

蓝桥杯练习题

package d算法提高;

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

public class a7高精度除高精度 {
    
    

	public static void main(String[] args) {
    
    
		// TODO Auto-generated method stub
            Scanner in=new Scanner(System.in);
            BigInteger n=in.nextBigInteger();
            BigInteger m=in.nextBigInteger();
            BigInteger b=n.divide(m);
            System.out.println(b);
	}

}

猜你喜欢

转载自blog.csdn.net/weixin_45952706/article/details/114302541