用Java的大整数类Integer来实现大整数的一些运算

2020-12-13 16:07

阅读:467

标签:new   计算   out   rac   compareto   math   close   绝对值   pareto   

import java.io.*;
import java.util.*;
import java.math.*;
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        BigInteger a, b;
        while(sc.hasNext()) {
            a = sc.nextBigInteger();
            b = sc.nextBigInteger();
            System.out.println(a.add(b));   //大整数加法
            System.out.println(a.subtract(b));  //减法
            System.out.println(a.multiply(b));  //乘法
            System.out.println(a.divide(b));    //除法
            System.out.println(a.remainder(b)); //取模
            
            //大整数的比较
            if(a.compareTo(b) == 0)
                System.out.println("a == b");
            else if(a.compareTo(b) > 0)
                System.out.println("a > b");
            else if(a.compareTo(b) 

用Java的大整数类Integer来实现大整数的一些运算

标签:new   计算   out   rac   compareto   math   close   绝对值   pareto   

原文地址:https://www.cnblogs.com/KeepZ/p/11617887.html


评论


亲,登录后才可以留言!