Coder Social home page Coder Social logo

standard-calculator's Introduction

Design of a Standard Calculator

AIM:

To design a web application for a standard calculator.

DESIGN STEPS:

Step 1:

Step 2:

Step 3:

Validate the HTML and CSS code.

Step 6:

Publish the website in the given URL.

PROGRAM :

<!DOCTYPE html>
<html>
<head>
<title>SEC Demo on Calculator</title>
<style type="text/css">
table{
border: 1px solid black;
margin-left: auto;
margin-right: auto;
}
input[type="text"]{
border: 1px solid black;
padding: 20px 30px;
font-size: 24px;
font-weight: bold;
border-radius: 2px;
}
input[type="button"]{
width: 100%;
padding: 20px 40px;
background-color:greenyellow;
border-radius: 2px;
}
</style>
</head>
<body>
<form name="form1" onload="result.value=''">
<h1 style="text-align: center;color:blue;">Simple Calculator</h1>
<table id="calc">
<tr>
<td colspan="4">
<input type="text" id="result">
</td>
</tr>
<tr>
<td><input type="button" value="1" onclick="result.value+='1'"/></td>
<td><input type="button" value="2" onclick="result.value+='2'"/></td>
<td><input type="button" value="3" onclick="result.value+='3'"/></td>
<td><input type="button" value="+" onclick="result.value+='+'"/></td>
</tr>
<tr>
<td><input type="button" value="4" onclick="result.value+='4'"/></td>
<td><input type="button" value="5" onclick="result.value+='5'"/></td>
<td><input type="button" value="6" onclick="result.value+='6'"/></td>
<td><input type="button" value="-" onclick="result.value+='-'"/></td>
</tr>
<tr>
<td><input type="button" value="7" onclick="result.value+='7'"/></td>
<td><input type="button" value="8" onclick="result.value+='8'"/></td>
<td><input type="button" value="9" onclick="result.value+='9'"/></td>
<td><input type="button" value="*" onclick="result.value+='*'"/></td>
</tr>
<tr>
<td><input type="button" value="/" onclick="result.value+='/'"/></td>
<td><input type="button" value="0" onclick="result.value+='0'"/></td>
<td><input type="button" value="." onclick="result.value+='.'"/></td>
<td><input type="button" value="="
onclick="result.value=eval(result.value)"/></td>
</tr>
<tr>
<td colspan="4">
<input type="button" value="clearall" id="clear"
onclick="result.value=''">
</td>
</tr>
</table>
</form>

OUTPUT:

output

Result:

the program is successfuly exicuted

standard-calculator's People

Contributors

obedotto avatar madhanbabu2004 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.