14.关于n的阶乘的问题重难点剖析

1.求n!中有多少个质因子p;

算法①: 复杂度(nlogn)
只适用于n很小的情况 [PASS]

int _sum(int n,int p)
{
	int ans=0;
	for(int i=2;i<=n;i