在 JavaScript中 ,如何获取:
对于一些数字y和一些除数,x将商(quotient)和余数(remainder)计算为:
y
x
quotient
remainder
var quotient = Math.floor(y/x); var remainder = y % x;