You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The precision loss can cause both increase and decrease of a number. In this particular case the number becomes a tiny bit less, that's why it rounded down.
Note that `63.5` has no precision loss at all. That's because the decimal part `0.5` is actually `1/2`. Fractions divided by powers of `2` are exactly represented in the binary system, now we can round it:
Copy file name to clipboardexpand all lines: 1-js/05-data-types/02-number/3-repeat-until-number/solution.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,9 @@ function readNumber() {
15
15
alert(`Read: ${readNumber()}`);
16
16
```
17
17
18
-
The solution is a little bit more intricate that it could be because we need to handle `null`/empty lines.
18
+
解法較為複雜些,因為我們需要處理 `null`/空行。
19
19
20
-
So we actually accept the input until it is a "regular number". Both `null` (cancel) and empty line also fit that condition, because in numeric form they are `0`.
The simplest, but wrong solution would be to generate a value from `min`to`max`and round it:
3
+
最簡單卻錯誤的解法,是產生由 `min`至`max`的值,再進位它:
4
4
5
5
```js run
6
6
functionrandomInteger(min, max) {
@@ -11,28 +11,28 @@ function randomInteger(min, max) {
11
11
alert( randomInteger(1, 3) );
12
12
```
13
13
14
-
The function works, but it is incorrect. The probability to get edge values `min`and`max`is two times less than any other.
14
+
這個函式可以運行,但它不正確。得到邊緣值 `min`和`max`的機率比其它值還要少了兩倍。
15
15
16
-
If you run the example above many times, you would easily see that `2`appears the most often.
16
+
若你執行上述範例許多次,你將會很容易就看到 `2`較常出現。
17
17
18
-
That happens because `Math.round()`gets random numbers from the interval `1..3`and rounds them as follows:
18
+
那是因為 `Math.round()`由區間 `1..3`之間得到隨機數,並像下面這樣進位:
19
19
20
20
```js no-beautify
21
21
values from 1... to 1.4999999999 become 1
22
22
values from 1.5... to 2.4999999999 become 2
23
23
values from 2.5... to 2.9999999999 become 3
24
24
```
25
25
26
-
Now we can clearly see that `1`gets twice less values than `2`. And the same with `3`.
26
+
現在我們可以清楚看到 `1`比 `2` 還少了兩倍,且同樣情況對 `3` 也是。
27
27
28
-
# The correct solution
28
+
# 正確的解法
29
29
30
-
There are many correct solutions to the task. One of them is to adjust interval borders. To ensure the same intervals, we can generate values from `0.5 to 3.5`, thus adding the required probabilities to the edges:
0 commit comments