-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPorta-OU.js
130 lines (107 loc) · 3.34 KB
/
Porta-OU.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
var int1 = {
P: false,
Q: false,
H: function () {
return this.P || this.Q;
}
};
var int2 = {
P: false,
Q: true,
H: function () {
return this.P || this.Q;
}
};
var int3 = {
P: true,
Q: false,
H: function () {
return this.P || this.Q;
}
};
var int4 = {
P: true,
Q: true,
H: function () {
return this.P || this.Q;
}
};
function Checkbox1() {
int1.P = !int1.P;
int2.P = !int2.P;
int3.P = !int3.P;
int4.P = !int4.P;
document.getElementById("linha1P").innerHTML = int1.P;
document.getElementById("linha2P").innerHTML = int2.P;
document.getElementById("linha3P").innerHTML = int3.P;
document.getElementById("linha4P").innerHTML = int4.P;
let negar = document.getElementsByClassName("classcheckbox");
if (negar[0].checked) {
document.getElementById("negacaoP").innerHTML = "¬";
}
else if (!negar[0].checked) {
document.getElementById("negacaoP").innerHTML = "";
}
Resultado();
}
function Checkbox2() {
int1.Q = !int1.Q;
int2.Q = !int2.Q;
int3.Q = !int3.Q;
int4.Q = !int4.Q;
document.getElementById("linha1Q").innerHTML = int1.Q;
document.getElementById("linha2Q").innerHTML = int2.Q;
document.getElementById("linha3Q").innerHTML = int3.Q;
document.getElementById("linha4Q").innerHTML = int4.Q;
let negar = document.getElementsByClassName("classcheckbox");
if (negar[1].checked) {
document.getElementById("negacaoQ").innerHTML = "¬";
}
else if (!negar[1].checked) {
document.getElementById("negacaoQ").innerHTML = "";
}
Resultado();
}
function Resultado() {
document.getElementById("linha1P").innerHTML = int1.P;
document.getElementById("linha1Q").innerHTML = int1.Q;
let resultado1 = this.int1.P || this.int1.Q;
if (resultado1 == true) {
document.getElementById("resultadolinha1").innerHTML = resultado1;
}
else {
document.getElementById("resultadolinha1").innerHTML = resultado1;
}
document.getElementById("linha2P").innerHTML = int2.P;
document.getElementById("linha2Q").innerHTML = int2.Q;
let resultado2 = this.int2.P || this.int2.Q;
if (resultado2 == true) {
document.getElementById("resultadolinha2").innerHTML = resultado2;
}
else {
document.getElementById("resultadolinha2").innerHTML = resultado2;
}
document.getElementById("linha3P").innerHTML = int3.P;
document.getElementById("linha3Q").innerHTML = int3.Q;
let resultado3 = this.int3.P || this.int3.Q;
if (resultado3 == true) {
document.getElementById("resultadolinha3").innerHTML = resultado3;
}
else {
document.getElementById("resultadolinha3").innerHTML = resultado3;
}
document.getElementById("linha4P").innerHTML = int4.P;
document.getElementById("linha4Q").innerHTML = int4.Q;
let resultado4 = this.int4.P || this.int4.Q;
if (resultado4 == true) {
document.getElementById("resultadolinha4").innerHTML = resultado4;
}
else {
document.getElementById("resultadolinha4").innerHTML = resultado4;
}
}
var lista = new Array();
lista.push(int1);
lista.push(int2);
lista.push(int3);
lista.push(int4);