94 lines
3.5 KiB
HTML
94 lines
3.5 KiB
HTML
<!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">
|
|
<link rel="icon" type="image/x-icon" href="favicon.png">
|
|
<title>Set Algebra Calculator</title>
|
|
|
|
<link rel="stylesheet" href="../style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<header>
|
|
<div class="content">
|
|
<h3><a href="../index.html">CDM</a></h3>
|
|
<div class="theme">
|
|
<h3><a href="">Set Algebra</a></h3>
|
|
<h3><a href="../Boolean-Algebra/index.html">Boolean Algebra</a></h3>
|
|
</div>
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="wrapper">
|
|
|
|
<div class="wrap-side">
|
|
<h1>Sets</h1>
|
|
<div id="sets">
|
|
<div class="input-wrap">
|
|
<h1 class="text">Set A = </h1>
|
|
<div class="input"><input type="set" onkeydown="return checkInputSet(event.key, this.value)" id="set0" placeholder="1,2,3" /></div>
|
|
</div>
|
|
<div class="input-wrap">
|
|
<h1 class="text">Set B = </h1>
|
|
<div class="input"><input type="set" onkeydown="return checkInputSet(event.key, this.value)" id="set1" placeholder="Define set" /></div>
|
|
</div>
|
|
</div>
|
|
<input class="addSet" type="button" value="Add Set" onclick="AddSet()" />
|
|
</div>
|
|
|
|
<div class="wrap-side">
|
|
<h1>Problem</h1>
|
|
<h2><input type="problem" id="formula" onkeydown="return checkInputProblem(event.key)" placeholder="!A-C+B/U" /></h2>
|
|
<div class="buttons">
|
|
<input class="button" type="button" id="calculate" value="Evaluate" onclick="Evaluate(true)" />
|
|
<input class="button" type="button" id="calculate" value="Step by step" onclick="stepByStep()" />
|
|
</div>
|
|
<div class="wrap-result">
|
|
<div class="input-wrap">
|
|
<h1 class="text">Result </h1>
|
|
<div class="input"><input type="result" id="result" readonly/></div>
|
|
</div>
|
|
</div>
|
|
<h6 class="description">Define sets: A, B, C, and Universal set. Then write the problem you need to solve. </h6>
|
|
<h6 class="operations">
|
|
<div class="operation">
|
|
<div class="operation-bg">!</div>
|
|
<h6>Complement</h6>
|
|
</div>
|
|
<div class="operation">
|
|
<div class="operation-bg">/</div>
|
|
<h6>Intersection</h6>
|
|
</div>
|
|
<div class="operation">
|
|
<div class="operation-bg">+</div>
|
|
<h6>Union</h6>
|
|
</div>
|
|
<div class="operation">
|
|
<div class="operation-bg">-</div>
|
|
<h6>Substraction</h6>
|
|
</div>
|
|
</h6>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="wrapper hide" id="stepByStep">
|
|
<div class="step-by-step" id="steps">
|
|
<h1>Step by step</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- -----------------------------------JS---------------------------- -->
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |