25 大数处理--使用案例


📖博主介绍


个人主页: Zinksl
编程社区: Zinksl编程酒馆
个人格言: 想法落实的最佳时机就是现在!🏄

如果你 喜欢交流热爱分享欢迎加入编程社区交流群 大家一起学习技术,交流心得,共同进步🚅


1 大整数的处理使用BigInteger

代码示例:

public class BigNumber {
    public static void main(String[] args) {
        BigInteger bigInteger = new BigInteger("123456789123456");
        BigInteger bigInteger2 = new BigInteger("123321");
        BigInteger temp;
//            加法
        temp = bigInteger.add(bigInteger2);
        System.out.println(bigInteger+"与"+bigInteger2+"的和为:"+temp);
//        减法
        temp = bigInteger.subtract(bigInteger2);
        System.out.println(bigInteger+"与"+bigInteger2+"的差为:"+temp);
//        乘法
        temp = bigInteger.multiply(bigInteger2);
        System.out.println(bigInteger+"与"+bigInteger2+"的积为:"+temp);
//        除法
        temp = bigInteger.divide(bigInteger2);
        System.out.println(bigInteger+"与"+bigInteger2+"的商为:"+temp);
    }
}

2 大小数处理使用

代码示例:

public class BigDecimalDemo {
    public static void main(String[] args) {
        BigDecimal bd1 = new BigDecimal("15113151315131.15153151652");
        BigDecimal bd2 = new BigDecimal("5");
        BigDecimal temp;
//        加法
        temp = bd1.add(bd2);
        System.out.println("和为:"+temp);
//        减法
        temp = bd1.subtract(bd2);
        System.out.println("差为:"+temp);
//        乘法
        temp = bd1.multiply(bd2);
        System.out.println("积为:"+temp);
//        除法
        temp = bd1.divide(bd2);
        System.out.println("商为:"+temp);

    }
}

结尾彩蛋

认真分享技术,记录学习点滴若内容对你有用可以鼓励一下🍻方式如下
点赞:👍 留言:✍收藏:⭐️

如有疑问欢迎评论区留言,或加入技术交流群:1002743802
关注我订阅专栏,会持续体系化更新哦👈

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Zinksl

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值