-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.html
67 lines (67 loc) · 2.43 KB
/
calculator.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<link rel="stylesheet" type="text/css" href="calculator.css">
</head>
<body>
<div class="main">
<form name="MyForm">
<input type="text" name="textview" class="textview" disabled>
</form>
<table>
<tr>
<td><input class="button symbol gray" type="button"
onclick="SR('r')" id="r" value="√" disabled></td>
<td><input class="button symbol gray" type="button"
onclick="SR('s')" id="s" value="x²" disabled></td>
<td><input class="button symbol gray" type="button"
onclick="back()" value="⌫"></td>
<td><input class="button symbol gray" type="button"
onclick="insertOp('/') " value="÷"></td>
</tr>
<tr>
<td><input class="button number gray" type="button"
onclick="insertNum(7)" value="7"></td>
<td><input class="button number gray" type="button"
onclick="insertNum(8)" value="8"></td>
<td><input class="button number gray" type="button"
onclick="insertNum(9)" value="9"></td>
<td><input class="button symbol blue" type="button"
onclick="insertOp('*')" value="X"></td>
</tr>
<tr>
<td><input class="button number gray" type="button"
onclick="insertNum(4)" value="4"></td>
<td><input class="button number gray" type="button"
onclick="insertNum(5)" value="5"></td>
<td><input class="button number gray" type="button"
onclick="insertNum(6)" value="6"></td>
<td><input class="button symbol blue" type="button"
onclick="insertOp('-')" value="-"></td>
</tr>
<tr>
<td><input class="button number gray" type="button"
onclick="insertNum(1)" value="1"></td>
<td><input class="button number gray" type="button"
onclick="insertNum(2)" value="2"></td>
<td><input class="button number gray" type="button"
onclick="insertNum(3)" value="3"></td>
<td><input class="button symbol blue" type="button"
onclick="insertOp('+')" value="+"></td>
</tr>
<tr>
<td><input class="button number gray" type="button"
onclick="clean" value="C"></td>
<td><input class="button number gray" type="button"
onclick="insertNum(0)" value="0"></td>
<td><input class="button number gray" type="button"
onclick="insertDec()" value="."></td>
<td><input class="button symbol blue" type="button"
onclick="equalTo()" value="="></td>
</tr>
</table>
</div>
<script src="calculation.js"></script>
</body>
</html>