Coder Social home page Coder Social logo

angularcalculation's Introduction

AngularCalculation

Web Page for Mathematical Calculations using Angular

AIM:

To design a dynamic website to perform mathematical calculations using Angular Framwork

DESIGN STEPS:

Step 1:

Requirement collection.

Step 2:

Creating the layout using HTML and CSS in component.html file

Step 3:

Write typescript to perform the calculations.

Step 4:

Validate the layout in various browsers.

Step 5:

Validate the HTML code.

Step 6:

Publish the website in the given URL.

PROGRAM :

Rectangle:

Rectangle.component.html:

<style>
    h2{
background-color: rgb(1, 15, 15);
color: rgb(249, 244, 250);
}
.container {
  display: block;
  background-color: grey;
  min-height: 240px;
  margin-top: 60px;
}
.al{
    text-align: center;
    font-size: 25px;
}

</style>

<div class="container">
    <div class="al">
    <h2>Area of Rectangle</h2>
    Length : <input type="text"[(ngModel)]='length'>  Meters<br/>
    Breadth : <input type="text"[(ngModel)]='breadth'>  Meters<br/>
    <input type="button" (click)="onCalculate()" value="CalculateArea"><br/>
    Area : <input type="text" [value]="area">  Meters<sup>2</sup><br/>

</div>

Rectangle.component.ts:

import { Component } from "@angular/core";

@Component({
    selector:'Rectangle-Area',
    templateUrl:'./rectangle.component.html'
})
export class RectangleComponent{
    length:number;
    breadth:number;
    area:number;
    constructor(){
        this.length=0;
        this.breadth=0;
        this.area=0;


    }
    onCalculate()
    {
            this.area = this.length*this.breadth
    }
}


Cylinder:

Cylinder.component.html:

<style>
    h2{
background-color: rgb(1, 14, 13);
color: rgb(245, 243, 244);
}
.container {
  display: block;
  background-color: grey;
  min-height: 240px;
  margin-top: 60px;
}
.al{
    text-align: center;
    font-size: 25px;
}

</style>
<div class="container">
<div class="al">
    <h2>Volume of Cylinder</h2>
    Radius : <input type="text"[(ngModel)]='Radius'>  Meters<br/>
    Height : <input type="text"[(ngModel)]='Height'>  Meters<br/>
    <input type="button" (click)="onCalculate()" value="CalculateArea"><br/>
    Area : <input type="text" [value]="Area">  Meters<sup>3</sup><br/>

</div>

Cylinder.component.ts:

import { Component } from "@angular/core";

@Component({
    selector:'Volume-cylinder',
    templateUrl:'./cylinder.component.html'
})
export class CylinderComponent{
    Radius:number;
    Height:number;
    Area:number;
    constructor(){
        this.Radius=0;
        this.Height=0;
        this.Area=0;


    }
    onCalculate()
    {
            this.Area =22/7*this.Radius**2*this.Height
    }
}

App

App.component.css:

h2{
    text-align: center;
    color: rgb(17, 14, 39);
    margin-top: 10px;


}
.container {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .backgd{
    background-color: rgb(203, 15, 250) ;
}
  .footer{
      text-align: center;
      font-size: 30px;
      color: rgb(245, 245, 248);
      background-color: rgb(203, 15, 250);
      margin-top: 10px;
  }

App.component.html:

<div class="backgd">
    <h2>MATH CALCULATION</h2>
    <div class="container">
        
<Rectangle-Area>

</Rectangle-Area>

<Cylinder-Vol>
  
</Cylinder-Vol>

<div class="footer">Developed by: Syed Abdul Wasih H</div>

    </div>

</div>

App.module.ts:

import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';

import { AppComponent } from './app.component';
import { CylinderComponent } from './cylinder/cylinder.component';
import { RectangleComponent } from './rectangle/rectangle.component';

@NgModule({
  declarations: [
    AppComponent,RectangleComponent,CylinderComponent
  ],
  imports: [
    BrowserModule,FormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

OUTPUT:

Without output:

output

With output:

output

Result:

To design a dynamic website to perform mathematical calculations using Angular Framwork is successfully created.

angularcalculation's People

Contributors

abdul-wasih03 avatar karthi-govindharaju-ai 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.