Coder Social home page Coder Social logo

ex04-constructor's Introduction

Ex04-Constructor

Aim:

To write a C# program to calculate the salary of an employee by passing the name, designation, noofexperience, basic salary and insurance amount through constructor.

Algorithm:

Step1:

Start.

Step2:

Create a class and a constructor.

Step3:

Get name, designation, noofexperience, basic salary and insurance amount from the User.

Step4:

Call salary method in constructor to calculate salary.

Step5:

Call display method to display the output.

Step6:

stop.

Program:

using System;
namespace Hello
{
  class Employ
  {
      public string name, designation;
      public int noofexperience, basicsalary,insuranceamount;
      public float hra, ta, income;
      public Employ(string name, string designation, int noofexperience, int basicsalary, int insuranceamount)
      {
          this.name = name;
          this.designation = designation;
          this.noofexperience = noofexperience;
          this.basicsalary = basicsalary;
          this.insuranceamount = insuranceamount;
      }
      public void salary()
      {
          hra = (20 / 100) * this.basicsalary;
          ta = (10 / 100) * this.basicsalary;
          income = hra + ta + this.basicsalary - this.insuranceamount;
      }

      public void display()
      {
          Console.WriteLine("Name of the employee is {0} having {1} of experience, working as {2}", this.name, this.noofexperience, this.designation);
          Console.WriteLine("Receives {0} of salary",income);
      }

      public static void Main(String[] args)
      {
          Employ emp1 = new Employ("Hari", "Tester", 10, 30000, 1000);
          Employ emp2 = new Employ("Latha", "Developer", 5, 25000, 1000);
          emp1.salary();
          emp1.display();
          emp2.salary();
          emp2.display();
      }
  }
}

       

Output:

img

Result:

Thus the C# program to calculate the salary of an employee by passing the name, designation, noofexperience, basic salary and insurance amount through constructor is executed successfully.

ex04-constructor's People

Contributors

archanasharikalharinarayanan avatar kayalvizhi02 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.