Just the Facts
The expression N!, read as ``N factorial," denotes the product of the firstN positive integers, where
N is nonnegative. So, for example,
| Just the Facts |
| N | N! |
| 0 | 1 |
| 1 | 1 |
| 2 | 2 |
| 3 | 6 |
| 4 | 24 |
| 5 | 120 |
| 10 | 3628800 |
For this problem, you are to write a program that can compute the last non-zero digit of any factorial for (
). For example,
if your program is asked to compute the last nonzero digit of 5!, your program should produce ``2" because 5! = 120, and 2 is the last nonzero digit of 120.
Input
Input to the program is a series of nonnegative integers not exceeding 10000, each on its own line with no other letters, digits or spaces. For each integerN, you should read the value and compute the last nonzero digit of N!.Output
For each integer input, the program should print exactly one line of output. Each line of output should contain the valueN, right-justified in columns 1 through 5 with leading blanks, not leading zeroes. Columns 6 - 9 must contain `` ->" (space hyphen greater space). Column 10 must contain the single last non-zero digit ofN!.Sample Input
1 2 26 125 3125 9999
Sample Output
1 -> 1
2 -> 2
26 -> 4
125 -> 8
3125 -> 2
9999 -> 8
数论的方法不太会。开始至保留最有一个非零位数字结果当然不对,产生是因为X5和X10,10好办直接相当于不乘而5的话要找个偶数(取2)匹配消掉,简单的消法是从保留的含有非最后零的数字段中直接除以2,所以导致我们需要保留不止一位数字,n范围小的情况下,保存5位即可,范围大了保存有效数字的范围相应要增大。
#include <stdio.h>
int main(){int m,n,i,j,pos=100000;
while (scanf("%d",&n)!=EOF)
{m=1;
for (i=1;i<=n;i++)
{j=i;
while (j%10==0) j=j/10;
while (j%5==0) {j=j/5;m=m/2;}
m=m*j;
while (m%pos==0) m=m/pos;
m=m%pos;
}
while (m%10==0) m=m%10;
printf("%5d -> %d\n",n,m%10);
}
return 0;
}
本文介绍了一种计算任意非负整数阶乘的最后一非零位数的算法。通过去除乘积中的所有末尾零,该算法能有效地找到指定阶乘的最后一非零数字。示例输入输出展示了对于不同数值的有效计算。

861

被折叠的 条评论
为什么被折叠?



