Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
V
vebinar_11
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Нұрасыл Қайратұлы
vebinar_11
Commits
b6f75697
Commit
b6f75697
authored
Dec 06, 2023
by
Nurasyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
5 task
parent
11d25d41
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
+52
-0
index.js
JS/index.js
+52
-0
No files found.
JS/index.js
View file @
b6f75697
function
getRandomNumber
()
{
return
Math
.
round
(
Math
.
random
()
*
99
)
};
function
showResult
(
arr
)
{
alert
(
`
Group 0 - 9:
${
arr
[
0
]}
Group 10 - 19:
${
arr
[
1
]}
Group 20 - 29:
${
arr
[
2
]}
Group 30 - 39:
${
arr
[
3
]}
Group 40 - 49:
${
arr
[
4
]}
Group 50 - 59:
${
arr
[
5
]}
Group 60 - 69:
${
arr
[
6
]}
Group 70 - 79:
${
arr
[
7
]}
Group 80 - 89:
${
arr
[
8
]}
Group 90 - 99:
${
arr
[
9
]}
`
);
};
function
counterGroup
(
arr
,
num
)
{
for
(
let
i
=
0
;
i
<
num
;
i
++
)
{
if
(
num
>=
0
&&
num
<=
9
)
{
arr
[
0
]
++
;
}
else
if
(
num
>=
10
&&
num
<=
19
)
{
arr
[
1
]
++
;
}
else
if
(
num
>=
20
&&
num
<=
29
)
{
arr
[
2
]
++
;
}
else
if
(
num
>=
30
&&
num
<=
39
)
{
arr
[
3
]
++
;
}
else
if
(
num
>=
40
&&
num
<=
49
)
{
arr
[
4
]
++
;
}
else
if
(
num
>=
50
&&
num
<=
59
)
{
arr
[
5
]
++
;
}
else
if
(
num
>=
60
&&
num
<=
69
)
{
arr
[
6
]
++
;
}
else
if
(
num
>=
70
&&
num
<=
79
)
{
arr
[
7
]
++
;
}
else
if
(
num
>=
80
&&
num
<=
89
)
{
arr
[
8
]
++
;
}
else
if
(
num
>=
90
&&
num
<=
99
)
{
arr
[
9
]
++
;
};
};
};
const
groupArr
=
[
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
];
for
(
let
i
=
0
;
i
<=
100000
;
i
++
)
{
counterGroup
(
groupArr
,
getRandomNumber
());
};
showResult
(
groupArr
);
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment