Sum Calculator
About this app
A simple calculator to sum up a series of numbers.
Sum Calculator Sum Calculator Enter the numbers below to calculate their sum: Calculate Sum
Related apps
Put this on your site
Source
<!DOCTYPE html>
<html>
<head>
<title>Sum Calculator</title>
<meta name="description" content="A simple calculator to sum up a series of numbers.">
<meta name="keywords" content="sum, calculator, addition">
</head>
<body>
<h1>Sum Calculator</h1>
<p>Enter the numbers below to calculate their sum:</p>
<input id="numbers" type="text" value="1800, 2400, 1800, 2400, 3000, 1800, 1800, 1200, 1200, 1200, 3600, 4800" style="width: 80%;"><br><br>
<button onclick="calculateSum()">Calculate Sum</button>
<p id="result"></p>
<script>
function calculateSum() {
var numbers = document.getElementById('numbers').value.split(', ').map(Number);
var sum = numbers.reduce((a, b) => a + b, 0);
document.getElementById('result').innerHTML = 'Sum: $' + sum.toFixed(2);
}
</script>
</body>
</html>
NEW APPS
These are apps made by the community!