smod是什么意思:
smod是什么意思:
n mod m indicates the remainder of the euclidian
division of n by m, ie 0 = (n mod m) = m-1 and
there exists k such that n = (k*m) + (n mod m);
n smod m indicates the offset remainder of the
euclidian division of n by m, ie
1 = (n smod m) = m and there exists k such that
n = (k*m) + (n smod m);