码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-10-02 18:39:44      阅读:113      评论:0      收藏:0      [点我收藏+]

标签: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) < 0)
                System.out.println("a < b");
            
            //大整数的绝对值
            System.out.println(a.abs());
            
            //计算大整数的幂次方
            int exp = 10;
            System.out.println(a.pow(exp));
            
            //返回大整数十进制的字符串表示
            System.out.println(a.toString());
            
            //返回大整数p进制的字符串表示
            int p = 8;
            System.out.println(a.toString(p));
        }
        sc.close();
    }
}

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

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

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!