Go to the first, previous, next, last section, table of contents.


idiv, irem

idiv(i1,i2)
:: 整数除算による商.
irem(i1,i2)
:: 整数除算による剰余.
return
整数
i1 i2
整数
[0] idiv(100,7);
14
[0] idiv(-100,7);
-14
[1] irem(100,7);
2
[1] irem(-100,7);
-2
参照
section sdiv, sdivm, srem, sremm, sqr, sqrm, section %.


Go to the first, previous, next, last section, table of contents.