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 题目链接 数的阶乘计算起来可能会很大,通常会因为爆数据范围无法存储,万进制求阶乘就是用一个结果数组存阶乘结果,数组中每一个元素只记录结果的四位数,这...