BigInteger和BigDecimal的基本用法
Posted qdu-lkc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BigInteger和BigDecimal的基本用法相关的知识,希望对你有一定的参考价值。
整型大数 BigInteger:
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan=new Scanner(System.in); BigInteger aa =new BigInteger("100"); BigInteger bb= new BigInteger("25"); BigInteger sub=aa.subtract(bb); //大整数的减 BigInteger add=aa.add(bb); //大整数的加 BigInteger mul=aa.multiply(bb); //大整数的乘 BigInteger div=aa.divide(bb); //大整数的除 System.out.println(sub.toString()); System.out.println(add.toString()); System.out.println(mul.toString()); System.out.println(div.toString()); } }
浮点型大数 BigDecimal 加减乘除用法 同BigInteger
以上是关于BigInteger和BigDecimal的基本用法的主要内容,如果未能解决你的问题,请参考以下文章
java怎么把BigInteger类型转换为BigDecimal类型