Quotient
Usage
• Quotient[m, n] 给出 m 和 n 的整数商.
• Quotient[m, n, d]要使用一个偏移d.
Notes
• 对于整数m 和 n,Quotient[m, n] 等价于 Floor[m/n]. • Quotient[m, n, d] 给出一个满足  的结果  . • n*Quotient[m, n, d] + Mod[m, n, d] 恒等于 m.
Further Examples
Here are a few quotients.
In[1]:=
|
Out[1]=
|
In[2]:=
|
Out[2]=
|
In[3]:=
|
Out[3]=
|
Here is Quotient with and without an offset.
In[4]:=
|
Out[4]=
|
In[5]:=
|
Out[5]=
|
In[6]:=
|
Out[6]=
|
|