【JAVA大數訓練】N!
N!
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 50539 Accepted Submission(s): 14212
Problem Description
Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N!
Input
One N in one line, process to the end of file.
Output
For each N, output N! in one line.
Sample Input
1
2
3
Sample Output
1
2
6
Author
JGShining(極光炫影)
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner input=new Scanner(System.in); while(input.hasNext()) { int n=input.nextInt(); BigInteger m=BigInteger.ONE; for (int i=1;i<=n;i++) { m=m.multiply(BigInteger.valueOf((long)i)); } System.out.println(m); } } }
//int型數字i轉換成BigInteger方法:BigInteger.valueOf((long)i)
最後更新:2017-04-03 12:56:11
上一篇:
深入淺出DDoS攻擊防禦——防禦篇
下一篇:
Sql查詢原理與Select執行順序(詳細)
並發工具類(三)控製並發線程數的Semaphore
ByteArrayOutputStream及其在IO中的應用
阿裏雲服務器價格表-阿裏雲服務器租用價格
memcached1.2新增啟動參數初探
magento -- 根據屬性名獲得產品的屬性值
IT人員啊,牛年發短信要有技術含量啊。。。
鑫眾6603棋牌源碼架設下載含最新版遊戲大廳+手機版網站+手機端大廳+代理係統+超強後台
Spring tool suite編譯不通過:Access restriction: The type XXX is not accessible
Jenkins 持續集成實踐(以網易蜂巢為例)-1 Master 節點的創建
設計模式六大原則---依賴倒置原則(DIP)