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

3

This document contains the code for a basic calculator interface. It includes HTML and CSS to layout the display and buttons in a grid. The JavaScript code defines functions to append numbers/operators, clear the display, backspace, and evaluate the display content as a calculation when the equals button is clicked. The calculator displays the result or an error message.

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)
28 views2 pages

3

This document contains the code for a basic calculator interface. It includes HTML and CSS to layout the display and buttons in a grid. The JavaScript code defines functions to append numbers/operators, clear the display, backspace, and evaluate the display content as a calculation when the equals button is clicked. The calculator displays the result or an error message.

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, sans-serif;
background-color: #f4f4f4;
display: flex;
align-items: center;
justify
margin: 0;
}

#calculator {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
width: 300px;
}

#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>y(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