题目
Let x⊗y be defined as the product of the integers from x to y. For example, 3⊗7=3∗4∗5∗6∗7. What is the value (2⊗5)/(6⊗8)?
解析
已知 \(x⊗y\) 被定义为从 \(x\) 到 \(y\) 的所有整数的乘积,我们需要求出 \(\frac{2 ⊗ 5}{6 ⊗ 8}\) 的值。
\(2 ⊗ 5 =\) 从 2 到 5 的所有整数的乘积 \(= 2 \times 3 \times 4 \times 5\)
\(6 ⊗ 8 =\) 从 6 到 8 的所有整数的乘积 \(= 6 \times 7 \times 8\)
=> (2⊗5)/(6⊗8)
=(2∗3∗4∗5)/(6∗7∗8)
= 5/14
所以,答案是 E。