-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcalculator.js
More file actions
79 lines (75 loc) · 2.07 KB
/
calculator.js
File metadata and controls
79 lines (75 loc) · 2.07 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
function one()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"1";
}
function two()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"2";
}
function three()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"3";
}
function minus()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"-";
}
function four()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"4";
}
function five()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"5";
}
function six()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"6";
}
function plus()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"+";
}
function seven()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"7";
}
function eight()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"8";
}
function nine()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"9";
}
function zero()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"0";
}
function equal()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = eval(x);
}
function multiply()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"*";
}
function divide()
{
var x = document.getElementById("screen").value;
document.getElementById("screen").value = x+"/";
}