zoukankan      html  css  js  c++  java
  • java如何使用大数值

    如何基本的整数和浮点数精度不能满足大数值的要求,可以使用java.math包里的BigInteger和BigDecimal类。

    BigInteger类实现了任意精度的整数运算。BigDecimal实现了任意精度的浮点数计算。

    使用静态的方法valueOf()可以把数值转化为大数值,如:BigInteger a=BigInteger.valueOf(10);

    我们无法使用+和*,取而代之的是add和multiply方法。

    BigInteger c=a.add(b);

    BigInteger d=c.multiply(b.add(BigInteger.valueOf(2)));

    import java.math.*;
    import java.util.*;
    class BigInteger
    {
    public static void main(String[] args)
    {
    Scanner in = new Scanner(System.in);

    System.out.println("how many numbers do you need to draw?");
    int k=in.nextInt();

    System.out.println("what is your highest number you can draw?");
    int n=in.nextInt();

    BigInteger lotteryodds=BigInteger.valueOf(1);
    for(int i=1;i<k;i++)
    lotteryodds=lotteryodds.multiply(BigInteger.valueOf(n-i+1)).divide(BigInteger.valueOf(i));

    System.out.println(lotteryodds);

    }
    }

  • 相关阅读:
    获得随机数
    Android Studio中的神操作
    Android Studio中的神操作
    我的github首页
    我的github首页
    初步尝试kotlin
    初步尝试kotlin
    创建自己的github博客
    js方法重载
    【HPU】[1014]【C语言训练】亲密数
  • 原文地址:https://www.cnblogs.com/speaklessdomore/p/3299494.html
Copyright © 2011-2022 走看看