Files
freeCodeCamp/curriculum/challenges/chinese/02-javascript-algorithms-and-data-structures/basic-javascript/finding-a-remainder-in-javascript.md
2023-02-20 20:31:01 +01:00

78 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
id: 56533eb9ac21ba0edf2244ae
title: 求余运算
challengeType: 1
videoUrl: 'https://scrimba.com/c/cWP24Ub'
forumTopicId: 18184
dashedName: finding-a-remainder-in-javascript
---
# --description--
<dfn>remainder</dfn> 求余运算符 `%` 返回两个数相除得到的余数
**示例**
<pre>
5 % 2 = 1
5 / 2 = 2 remainder 1
2 * 2 = 4
5 - 4 = 1
</pre>
**Usage**
In mathematics, a number can be checked to be even or odd by checking the remainder of the division of the number by `2`. Even numbers have a remainder of `0`, while odd numbers a remainder of `1`.
<pre>
17 % 2 = 1
48 % 2 = 0
</pre>
**提示**余数运算符(<dfn>remainder</dfn>)有时被错误地称为“模数”运算符。 它与模数非常相似,但不能用于负数的运算。
# --instructions--
使用 <dfn>remainder</dfn> `%`)运算符,计算 `11` 除以 `3` 的余数,并把余数赋给变量 `remainder`
# --hints--
变量 `remainder` 应该被初始化。
```js
assert(/(const|let|var)\s+?remainder/.test(code));
```
`remainder` 的值应该等于 `2`
```js
assert(remainder === 2);
```
你应该使用 `%` 运算符。
```js
assert(/\s+?remainder\s*?=\s*?.*%.*;?/.test(code));
```
# --seed--
## --after-user-code--
```js
(function (y) {
return 'remainder = ' + y;
})(remainder);
```
## --seed-contents--
```js
const remainder = 0;
```
# --solutions--
```js
const remainder = 11 % 3;
```