Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyMcGinn authored Oct 14, 2021
1 parent 2f2f599 commit f23b4e6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<!DOCTYPE html>
<body>
<html>
<script src="https://kihtrak.com/cloud_variable/cloudify.min.js"></script>
<script>
// \ / |¯¯¯ /¯¯¯
// \ /\ / |- \--\
// \/ \/ |___ ___/
// BASIC FACTORING CALCULATOR!
var cloud_calculations;
var addTo;
var multiplyTo;
Expand All @@ -19,6 +26,15 @@
if (addTo == 0 && multiplyTo == 0) {
try1 = 0;
try2 = 0;
final1 = try1;
final2 = try2;
solutionExists = true;
console.log("Got solution:");
console.log(final1);
console.log(final2);
alert("The two numbers are " + final1 + " and " + final2 + ".");
try2 = 5000;
tries = 5000;
} else {
try1 = -1000;
try2 = -1000;
Expand Down Expand Up @@ -57,3 +73,5 @@
onClick="activateFactoringCalculator();"
/>
</form>
</body>
</html>

0 comments on commit f23b4e6

Please sign in to comment.