Merge branch 'set-algebra'
This commit is contained in:
commit
fad7e9eb9a
BIN
Set-Algebra/Complement.png
Normal file
BIN
Set-Algebra/Complement.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
BIN
Set-Algebra/Intersection.png
Normal file
BIN
Set-Algebra/Intersection.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
BIN
Set-Algebra/Substraction.png
Normal file
BIN
Set-Algebra/Substraction.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
Set-Algebra/Union.png
Normal file
BIN
Set-Algebra/Union.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
@ -303,21 +303,26 @@ function printStep(operation, firstSet, secondSet, result) {
|
|||||||
step++;
|
step++;
|
||||||
|
|
||||||
let str = '';
|
let str = '';
|
||||||
|
let img = "";
|
||||||
switch (operation) {
|
switch (operation) {
|
||||||
case '!':
|
case '!':
|
||||||
str = `!${setToString(firstSet)} = ${setToString(result)}`;
|
str = `!${setToString(firstSet)} = ${setToString(result)}`;
|
||||||
|
img = "Complement.png";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '/':
|
case '/':
|
||||||
str = `${setToString(firstSet)} / ${setToString(secondSet)} = ${setToString(result)}`;
|
str = `${setToString(firstSet)} / ${setToString(secondSet)} = ${setToString(result)}`;
|
||||||
|
img = "Intersection.png";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '+':
|
case '+':
|
||||||
str = `${setToString(firstSet)} + ${setToString(secondSet)} = ${setToString(result)}`;
|
str = `${setToString(firstSet)} + ${setToString(secondSet)} = ${setToString(result)}`;
|
||||||
|
img = "Union.png";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case '-':
|
case '-':
|
||||||
str = `${setToString(firstSet)} - ${setToString(secondSet)} = ${setToString(result)}`;
|
str = `${setToString(firstSet)} - ${setToString(secondSet)} = ${setToString(result)}`;
|
||||||
|
img = "Substraction.png";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
@ -328,6 +333,7 @@ function printStep(operation, firstSet, secondSet, result) {
|
|||||||
steps.insertAdjacentHTML('beforeend', ` <div class="input-wrap">
|
steps.insertAdjacentHTML('beforeend', ` <div class="input-wrap">
|
||||||
<h1 class="text">${step}. </h1>
|
<h1 class="text">${step}. </h1>
|
||||||
<div class="input"><input type="result" value="${str}" readonly/></div>
|
<div class="input"><input type="result" value="${str}" readonly/></div>
|
||||||
|
<img src="${img}">
|
||||||
</div>`);
|
</div>`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user