搜索资源列表
1000s--Factorial
- 输入不超过1000的正整数,输出n!=1X2X3....Xn的精确结果 1000!大约等于4*10^2567,因此可以用一个3000个元素的数组f保存,为了方便我们从低位起保存位数据,再倒序输出,即f[0]保存个位,其他类推 每次只需要模拟手算即可完成n!,输出时要忽略前导0-Enter a positive integer less than 1000, Output n! = 1X2X3 .... Xn accurate results 1000! Approximately equ
PRGEV
- 该程序能利用遗传编程,进化出一个能计算阶乘的程序。计算过程中,前面是进化过程。后面是测试。-The program can take advantage of genetic programming, evolution of a program to calculate the factorial. Calculation process, the front Process of evolution. Followed by the test.