import java.math.BigInteger;import java.util.Scanner;public class LastFact{ // Returns Factorial of N static BigInteger factorial(int N) { // Initialize result BigInteger f = new BigInteger("1"); // Or BigInteger.ONE // Multiply f with 2, 3, ...N for (int i = 2; i <= N; i++) f = f.multiply(BigInteger.valueOf(i)); return f; } // Driver method public static void main(String args[]) throws Exception { int N = 300; System.out.println(factorial(N)); }}
我想取出 JAVA 中 BigInteger 中存儲(chǔ)的大數(shù)的最后一位
慕尼黑8549860
2021-06-10 18:15:55