
- 精华
- 0
- 积分
- 119
- 经验
- 119 点
- 威望
- 0 点
- 金钱
- 241 ¥
- 魅力
- 148
|
67、还有那道abcd都为质数,问除了1和自己,有多少个不同的因子。
======================
answer: 16
the answer here is wrong
as we know, we calculate the number of different factors, the equation is (n1=1)*(n2=1)...so here should be (1+1)*(1+1)*(1+1)*(1+1)=16. since here we need exclude 1 and itself, so here left 14.
i once met such kind of questions in my simulation test, just as, there are how many factors of 196 is the multible of 6
firstly, we need calculate the number of different factors of 192, then further account the exact number of the multiple of 6 |
|