-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator1.html
More file actions
65 lines (47 loc) · 1.66 KB
/
calculator1.html
File metadata and controls
65 lines (47 loc) · 1.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<label for="">enter first no</label>
<input type="number" id="n1" placeholder="first no"><br /><br />
<label for="">enter second no</label>
<input type="number" id="n2" placeholder="second no"><br /><br />
<label for="">result</label>
<input type="text" id="r"><br /><br />
<button onclick="add()">+</button>
<button onclick="sub()">-</button>
<button onclick="mul()">*</button>
<button onclick="div()">/</button>
<script>
function add(){
n1=document.getElementById("n1").value;
n2=document.getElementById("n2").value;
r=parseInt(n1)+parseInt(n2)
document.getElementById("r").value= r
}
function sub(){
n1=document.getElementById("n1").value;
n2=document.getElementById("n2").value;
r=parseInt(n1)-parseInt(n2)
document.getElementById('r').value=r
}
function mul(){
n1=document.getElementById("n1").value;
n2=document.getElementById("n2").value;
r=parseInt(n1)*parseInt(n2)
document.getElementById('r').value=r
}
function div(){
n1=document.getElementById("n1").value;
n2=document.getElementById("n2").value;
r=parseInt(n1)/parseInt(n2)
document.getElementById('r').value=r
}
</script>
</body>
</html>