-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 959 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Java Math Utils</title>
</head>
<body>
<h1>Java Math Utils</h1>
<h2>Primitive Pythagorean Triples</h2>
<label for="n1">Enter n1:</label>
<input type="number" id="n1" name="n1"><br>
<label for="n2">Enter n2:</label>
<input type="number" id="n2" name="n2"><br>
<button onclick="calculateTriples()">Calculate Triples</button>
<pre id="triples-output"></pre>
<h2>Arccotangent Calculation</h2>
<label for="x">Enter x:</label>
<input type="number" id="x" name="x"><br>
<label for="digits">How many digits of acot(x)?:</label>
<input type="number" id="digits" name="digits"><br>
<button onclick="calculateAcot()">Calculate Acot</button>
<pre id="acot-output"></pre>
<script src="big.js"></script>
<script src="app.js"></script>
</body>
</html>