Git Product home page Git Product logo

calc's Introduction

Ex.08 Design of a Standard Calculator

Date:22-12-2023

AIM:

To design a web application for a standard calculator with minimum five operations.

DESIGN STEPS:

Step 1:

Clone the github repository and create Django admin interface.

Step 2:

Change settings.py file to allow request from all hosts.

Step 3:

Use CSS for creating attractive colors.

Step 4:

Write JavaScript program for implementing five different operations.

Step 5:

Validate the HTML and CSS code.

Step 6:

Publish the website in the given URL.

PROGRAM :

home.html
<!DOCTYPE html>
<html>
    <head>
        <title>Calculator</title>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <form name="form1" onload="result.value=''">
            <h1 style="text-align: center;color:blue;">Vineela Shaik Calculator</h1>
            <h2 style="text-align: center;color:blue;">Reference Number:23012902</h2>
        <table id="calc">
            <tr>
                <td colspan="4">
                    <input type="text" id="result" >
                </td>
            </tr>
            <tr>
                <td><input type="button" value="1" id="1"onclick="display('1')"/></td>
                <td><input type="button" value="2" id="2"onclick="display('2')"/></td>
                <td><input type="button" value="3" id="3"onclick="display('3')"/></td>
                <td><input type="button" value="+" id="+"onclick="display('+')"/></td>
            </tr>
            <tr>
                <td><input type="button" value="4" id="4"onclick="display('4')"/></td>
                <td><input type="button" value="5" id="5"onclick="display('5')"/></td>
                <td><input type="button" value="6" id="6"onclick="display('6')"/></td>
                <td><input type="button" value="-" id="-"onclick="display('-')"/></td>
            </tr>
            <tr>
                <td><input type="button" value="7" id="7"onclick="display('7')"/></td>
                <td><input type="button" value="8" id="8"onclick="display('8')"/></td>
                <td><input type="button" value="9" id="9"onclick="display('9')"/></td>
                <td><input type="button" value="*" id="*"onclick="display('*')"/></td>
            </tr>
            <tr>
                <td><input type="button" value="/" id="/"onclick="display('/')"/></td>
                <td><input type="button" value="0" id="0"onclick="display('0')"/></td>
                <td><input type="button" value="." id="."onclick="display('.')"/></td>
                <td><input type="button" value="%" id="%"onclick="display('%')"/></td>
            </tr>
            <tr>
                <td colspan="3">
                    <input type="button" value="Clearall" id="clear" onclick="clear()">
                </td>
                <td><input type="button" value="=" onclick="solve()"/></td>
            </tr>
        </table>
        </form>
        <script type="text/javascript" src="file.js"></script>
    </body>
</html>

style.css
table{
    border: 5px solid black;
    margin-left:auto;
    margin-right: auto;
    
}
input[type="text"]{
    border: 3px solid black;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 20px;
    background-color: bisque;
}


input[type="button"]{
    width: 100%;
    padding: 20px 40px;
    background-color:rgb(60, 207, 230);
    border-radius: 10px;
    font-size: medium;
}

file.js
function display(value){
    document.getElementById("result").value+=value;
 }
  function clear(){
     document.getElementById("result").value='';
  }
  function solve(){
    let x = document.getElementById('result').value
    let y = eval(x);
    document.getElementById('result').value = y
    return y
}

OUTPUT:

Alt text Alt text

RESULT:

The program for designing a standard calculator using HTML and CSS is executed successfully.

calc's People

Contributors

vineelashaik avatar selvasachein 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.