0% found this document useful (0 votes)
31 views2 pages

5

Uploaded by

Saif Jutt
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views2 pages

5

Uploaded by

Saif Jutt
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, s
#calculator {
}

#display {
background-color: #f0f0f0;
padding: 10px;
text-align: right;
}

#buttons {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
}

button {
background-color: #e0e0e0;
border: none;
padding: 20px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}

button:hover {
background-color: #d0d0d0;
}
</style>
</head>
<body>

<div id="calculator">
<div id="display"></div>
<div id="buttons">
<button onclick="clearDisplay()">C</button>
<button onclick="appendToDisplay('/')">/</button>
<button onclick="appendToDisplay('*')">*</button>
<button onclick="backspace()">←</button>

<button onclick="appendToDisplay('7')">7</button>
<button onclick="appendToDisplay('8')">8</button>
<button onclick="appendToDisplay('9')">9</button>
<button onclick="appendToDisplay('-')">-</button>

<button onclick="appendToDisplay('4')">4</button>
<button onclick="appendToDisplay('5')">5</button>
<button onclick="appendToDisplay('6')">6</button>
<button onclick="appendToDisplay('+')">+</button>

<button onclick="appendToDisplay('1')">1</button>
<button onclick="appendToDisplay('2')">2</button>
<button onclick="appendToDisplay('3')">3</button>
<button onclick="appendToDisplay('0')">0</button>

<button onclick="calculate()">=</button>
</div>
</div>

<script>
let display = document.getElementById('display');

function appendToDisplay(value) {
display.textContent += value;
}

function clearDisplay() {
display.textContent = '';
}

function backspace() {
display.textContent = display.textContent.slice(0, -1);
}

function calculate() {
try {
display.textContent = eval(display.textContent);
} catch (error) {
display.textContent = 'Error';
}
}
</script>

</body>
</html>

You might also like