java 高精度模板

Posted 啦啦啦天啦噜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 高精度模板相关的知识,希望对你有一定的参考价值。

阶乘 hdu1042

import java.math.BigInteger;  
import java.util.*; 

public class Main {
    public static void main(String str[]){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
            int n=sc.nextInt();
            BigInteger p=BigInteger.ONE;
            for(int i=1;i<=n;i++){
                p=p.multiply(BigInteger.valueOf(i));
            }
            System.out.println(p);
        }
    }
}

 hdu 1047

import java.math.BigInteger;  
import java.util.*; 

public class Main {
    public static void main(String str[]){
        Scanner sc=new Scanner(System.in);
        int n=sc.nextInt();
        while(n-->0){
            BigInteger sum=BigInteger.ZERO;
            for(int i=0;;i++){
                BigInteger a=sc.nextBigInteger();
                if(!a.equals(BigInteger.valueOf(0))){
                    sum=sum.add(a);
                }
                else{
                    System.out.println(sum);  
                     if(n!=0)  
                         System.out.println();  
                     break;  
                }
            }
//            System.out.println(sum);
        }
    }
}

 

以上是关于java 高精度模板的主要内容,如果未能解决你的问题,请参考以下文章

如何在导航抽屉活动模板中的片段之间传递字符串变量

VSCode自定义代码片段1——vue主模板

VSCode自定义代码片段2——.vue文件的模板

VSCode自定义代码片段(vue主模板)

GLSL-片段着色器不同部分的精度不同

VSCode创建自定义用户片段