tmp/tmpmx_vrcvp/{from.md → to.md}
RENAMED
|
@@ -19,9 +19,11 @@ The binary `*` operator indicates multiplication.
|
|
| 19 |
|
| 20 |
The binary `/` operator yields the quotient, and the binary `%` operator
|
| 21 |
yields the remainder from the division of the first expression by the
|
| 22 |
second. If the second operand of `/` or `%` is zero the behavior is
|
| 23 |
undefined. For integral operands the `/` operator yields the algebraic
|
| 24 |
-
quotient with any fractional part discarded;[^28]
|
| 25 |
-
|
| 26 |
-
|
|
|
|
|
|
|
| 27 |
|
|
|
|
| 19 |
|
| 20 |
The binary `/` operator yields the quotient, and the binary `%` operator
|
| 21 |
yields the remainder from the division of the first expression by the
|
| 22 |
second. If the second operand of `/` or `%` is zero the behavior is
|
| 23 |
undefined. For integral operands the `/` operator yields the algebraic
|
| 24 |
+
quotient with any fractional part discarded;[^28]
|
| 25 |
+
|
| 26 |
+
if the quotient `a/b` is representable in the type of the result,
|
| 27 |
+
`(a/b)*b + a%b` is equal to `a`; otherwise, the behavior of both `a/b`
|
| 28 |
+
and `a%b` is undefined.
|
| 29 |
|