N! java
Posted 夏午晴天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了N! java相关的知识,希望对你有一定的参考价值。
1 import java.util.*; 2 import java.math.*; 3 4 public class Num2{ 5 public static void main(String args[]){ 6 BigInteger s; 7 int n; 8 Scanner cin = new Scanner(System.in); 9 while(cin.hasNext()){ 10 n = cin.nextInt(); 11 s = BigInteger.ONE; 12 for(int i = 1; i <= n; i++){ 13 s = s.multiply(BigInteger.valueOf(i)); 14 } 15 System.out.println(s); 16 } 17 } 18 }
以上是关于N! java的主要内容,如果未能解决你的问题,请参考以下文章