Pardon our dust! Site under Construction!
Your neighborhood company you can trust with 20 years of experience in Porter, Janitorial, and Heating & Cooling.

Signed in as:
filler@godaddy.com
Your neighborhood company you can trust with 20 years of experience in Porter, Janitorial, and Heating & Cooling.
Copyright © 2025 Sanacom - All Rights Reserved.
<html>
<head>
<script>
function calculate() {
var num1 = parseFloat(document.getElementById("num1").value);
var num2 = parseFloat(document.getElementById("num2").value);
var operator = document.getElementById("operator").value;
var result;
if (operator == "+") {
result = num1 + num2;
} else if (operator == "-") {
result = num1 - num2;
} else if (operator == "*") {
result = num1 * num2;
} else if (operator == "/") {
result = num1 / num2;
}
document.getElementById("result").value = result;
}
</script>
</head>
<body>
<input type="text" id="num1">
<select id="operator">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<input type="text" id="num2">
<button onclick="calculate()">Calculate</button>
<br><br>
Result: <input type="text" id="result">
</body>
</html>