//输出因子2和5个数的最小值 //判断因子并传回因子2的个数和5的个数 int fac(int n, int& n2,int & n5) { while (n > 1) { if (n % 2 == 0) { n2++; n /= 2; } else if (n % 5 == ...