我想的代码是这样的,你看看:- public class Test9 {
-
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- //定义一个变量用于计数
- int count=0;
- //每出现一个2和5,就会在末尾有一个0,所以只要看,从1到1000中总共有多少个2和5就可以了,
- //又因为5总比2少,所以,只要看1000的阶乘中有多少个约数5就可以了。
- for(int x=1;x<5;x++){
- count=(int) (count + 1000/Math.pow(5, x));
- }
- System.out.println(count);
- }
- }
复制代码 |