Toggle navigation
Toggle navigation
This project
Loading...
Sign in
오명준
/
probability_simulator
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
오명준
2021-11-13 03:11:57 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f6297940e961b8ffb48a173c717ec00c7299b861
f6297940
1 parent
b85a30cc
Add new sim 'Yacht dice'(html)
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
97 additions
and
0 deletions
yacht.html
yacht.html
0 → 100644
View file @
f629794
<html>
<head>
<title>
yacht dice
</title>
</head>
<script
src=
"yacht.js"
></script>
<body>
본 페이지는 Nintendo의 "51 Worldwide Games"의 Yacht Dice의 확률을 보여주는 페이지입니다.
<br>
0은 주사위를 굴리는 것으로, 1~6은 숫자를 고정하는 것으로 간주합니다.
<br>
<input
type=
"number"
id=
"d1"
,
min=
"0"
max=
"6"
value=
"0"
>
<input
type=
"number"
id=
"d2"
,
min=
"0"
max=
"6"
value=
"0"
>
<input
type=
"number"
id=
"d3"
,
min=
"0"
max=
"6"
value=
"0"
>
<input
type=
"number"
id=
"d4"
,
min=
"0"
max=
"6"
value=
"0"
>
<input
type=
"number"
id=
"d5"
,
min=
"0"
max=
"6"
value=
"0"
>
<input
type=
"button"
onclick=
calcP()
value=
"Roll!"
>
<table
border=
"2"
>
<tr
align=
"center"
>
<td>
Categories
</td>
<td>
n = 1
</td>
<td>
n = 2
</td>
<td>
n = 3
</td>
<td>
n = 4
</td>
<td>
n = 5
</td>
</tr>
<tr
align=
"center"
>
<td>
Aces
</td>
<td
id=
"ace_1"
></td>
<td
id=
"ace_2"
></td>
<td
id=
"ace_3"
></td>
<td
id=
"ace_4"
></td>
<td
id=
"ace_5"
></td>
</tr>
<tr
align=
"center"
>
<td>
Dueces
</td>
<td
id=
"duece_1"
></td>
<td
id=
"duece_2"
></td>
<td
id=
"duece_3"
></td>
<td
id=
"duece_4"
></td>
<td
id=
"duece_5"
></td>
</tr>
<tr
align=
"center"
>
<td>
Threes
</td>
<td
id=
"three_1"
></td>
<td
id=
"three_2"
></td>
<td
id=
"three_3"
></td>
<td
id=
"three_4"
></td>
<td
id=
"three_5"
></td>
</tr>
<tr
align=
"center"
>
<td>
Fours
</td>
<td
id=
"four_1"
></td>
<td
id=
"four_2"
></td>
<td
id=
"four_3"
></td>
<td
id=
"four_4"
></td>
<td
id=
"four_5"
></td>
</tr>
<tr
align=
"center"
>
<td>
Fives
</td>
<td
id=
"five_1"
></td>
<td
id=
"five_2"
></td>
<td
id=
"five_3"
></td>
<td
id=
"five_4"
></td>
<td
id=
"five_5"
></td>
</tr>
<tr
align=
"center"
>
<td>
Sixes
</td>
<td
id=
"six_1"
></td>
<td
id=
"six_2"
></td>
<td
id=
"six_3"
></td>
<td
id=
"six_4"
></td>
<td
id=
"six_5"
></td>
</tr>
<tr
align=
"center"
>
<td>
4 of a Kind
</td>
<td
colspan=
"5"
id=
"4kind"
></td>
</tr>
<tr
align=
"center"
>
<td>
Full House
</td>
<td
colspan=
"5"
id=
"full"
></td>
</tr>
<tr
align=
"center"
>
<td>
Small Straight
</td>
<td
colspan=
"5"
id=
"small"
></td>
</tr>
<tr
align=
"center"
>
<td>
Large Straight
</td>
<td
colspan=
"5"
id=
"large"
></td>
</tr>
<tr
align=
"center"
>
<td>
Yacht
</td>
<td
colspan=
"5"
id=
"yacht"
></td>
</tr>
</table>
<br>
choice
<p
id=
"choice"
></p>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment