-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
66 lines (60 loc) · 1.95 KB
/
script.js
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
var buttans = document.getElementsByClassName("btn");
var display = document.getElementById("ans");
var display2 = document.getElementById("sum");
var oprand1 = 0;
var oprand2 = null;
var oprator = null;
for(var i=0; i<buttans.length; i++){
buttans[i].addEventListener('click',function(){
var value = this.getAttribute('data-value');
var result;
if(value == '+'){
oprator = '+';
oprand1 = parseFloat(display.textContent);
display.innerText = "";
display2.innerText += value;
}
else if(value == '-'){
oprator = '-';
oprand1 = parseFloat(display.textContent);
display.innerText = "";
display2.innerText += value;
}
else if(value == '*'){
oprator = '*';
oprand1 = parseFloat(display.textContent);
display.innerText = "";
display2.innerText += value;
}
else if(value == '*'){
oprator = '*';
oprand1 = parseFloat(display.textContent);
display.innerText = "";
display2.innerText += value;
}
else if(value == '%'){
oprator = '%';
oprand1 = parseFloat(display.textContent);
display.innerText = "";
display2.innerText += value;
}
else if(value == '='){
oprand2 = parseFloat(display.textContent);
if(display.textContent == ""){
oprand2 = oprand1;
}
display2.innerText += value;
display.innerText = eval (oprand1 + " " + oprator + " " + oprand2);
display2.innerText += display.innerText;
}
else if(value == 'AC'){
display.innerText = "";
display2.innerText = "";
oprand1 = 0;
}
else{
display.innerText += value;
display2.innerText += value;
}
})
}