Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[과제번역] Part1 5.2 숫자형 8번 과제 번역 #1509#1582

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
ggff23r2f2fffsdfds wants to merge1 commit intojavascript-tutorial:master
base:master
Choose a base branch
Loading
fromggff23r2f2fffsdfds:translate/1509
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions1-js/05-data-types/02-number/8-random-min-max/solution.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
We need to "map" all values from the interval0..1into values from `min` to`max`.
0..1구간의 모든 값을 `min`에서`max`까지의 값으로 '매핑' 해야 합니다.

That can be done in two stages:
매핑은 두 단계로 수행할 수 있습니다.

1.If we multiply a random number from0..1by`max-min`, then the interval of possible values increases`0..1` to`0..max-min`.
2.Now if we add`min`, the possible interval becomes from`min` to`max`.
1. 0..1구간의 난수에`max-min`을 곱하면, 가능한 값의 구간이`0..1`에서`0..max-min`으로 증가합니다.
2.이제`min`을 더하면, 가능한 값의 구간은`min`에서`max`까지가 됩니다.

The function:
예시:

```js run
function random(min, max) {
return min + Math.random() * (max - min);
}

alert( random(1, 5) );
alert( random(1, 5) );
alert( random(1, 5) );
alert( random(1, 5) );
```

8 changes: 4 additions & 4 deletions1-js/05-data-types/02-number/8-random-min-max/task.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,13 +2,13 @@ importance: 2

---

#A random number from min to max
#최솟값에서 최댓값까지의 난수

The built-in function`Math.random()` creates a random value from`0` to`1` (not including`1`).
내장 함수`Math.random()``0`에서`1`까지의 난수를 생성합니다(`1`은 제외).

Write the function `random(min,max)` to generate a random floating-point number from `min` to `max` (not including`max`).
`min`에서 `max`까지 무작위의 부동소수점 숫자를 생성하는 함수 `random(min,max)`을 작성해 보세요(`max`는 제외).

Examples of its work:
예시:

```js
alert( random(1, 5) ); // 1.2345623452
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp