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 the C# program in visual studio 2022.

Step2:

Create a class and a constructor.

Step3:

Get employee name, Designation, No of experience, 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:

Run the prgram.

Program:

Developed by : Kiran J
Ref no : 212221240022
using System;
namespace employee
{
  class employee {
      public string name, designation;
      public int no_exp, salary,insurance;
      public double hra,ta,basic_pay;
      

      public employee(string name, string designation, int no_exp, int salary,int insurance)
      {
          this.name = name;
          this.designation = designation;
          this.no_exp = no_exp;
          this.salary = salary;
          this.insurance = insurance;
          
      }
      public void Salary()
      {
          hra = this.salary * 0.2;
          ta = this.salary * 0.1;
          basic_pay = this.salary + hra + ta - this.insurance;
      }
      public void display()
      {
          Console.WriteLine("Name of the employee is {0} having {1} of experience, working as {2}",this.name,this.no_exp,this.designation);
          Console.WriteLine("Receives {0} of salary",basic_pay);
      }
  }
  class employeeDeatils
  {
      public static void Main(string[] args)
      {
          employee emp1 = new employee("Hari","Tester",10,30000,1000);
          emp1.Salary();
          employee emp2 = new employee("Latha", "Developer", 5, 25000, 1000);
          emp2.Salary();

          emp1.display();
          emp2.display();
      }
  }

}

Output:

output

Result:

Thus, 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.

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.