c# programming

Develop a C# app that will determine the gross pay for each of three employees

Develop a C# app that will determine the gross pay for each of three employees

Develop a C# app that will determine the gross pay for each of three employees Object: Develop a C# app that will determine the gross pay for each of three employees. The company pays straight time for the first 20 hours worked by each employee and time-and-a-half for all hours worked in excess of 20 …

Develop a C# app that will determine the gross pay for each of three employees Read More »

Write a C# program that reads two arrays and checks whether they are equal.

Write a C# program that reads two arrays and checks whether they are equal.

Write a C# program that reads two arrays and checks whether they are equal. Object: Write a C# program that reads two arrays from the console and checks whether they are equal. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab_5a {     class chkequal     …

Write a C# program that reads two arrays and checks whether they are equal. Read More »

Write a C# program to create a static function factorial and calculate factorial of the number.

Write a C# program to create a static function factorial and calculate factorial of the number.

Write a C# program to create a static function factorial and calculate the factorial of the number. Object: Write a program to explain the method in C#. Create a static function factorial() that accepts a number from the user and returns the factorial of the number. C# Projects with Source Code Code: using System; using …

Write a C# program to create a static function factorial and calculate factorial of the number. Read More »

Create a class student with a data members name and calculate marks and percentage.

C# Program Create a class student with a data members name and calculate marks and percentage.

C# Program Create a class student with a data member’s name and calculate marks and percentage. Object: C# Program Create a class student with a data member name, age, marks of English, marks of math, marks of science, total marks, obtained marks and percentage provide member functions CalculateTotalMarks and CalculatePercentage to calculate marks and percentage …

C# Program Create a class student with a data members name and calculate marks and percentage. Read More »

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number

C# program which checks whether the number you inputted is an Even or Odd number. Object: C# Program Make a class EvenODD, which checks whether the number you inputted is an Even or Odd number. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab_3 { class …

C# program which checks whether the number you inputted is an Even or Odd number Read More »

How to Input any Number in C#

How to Input any Number in C#

How to Input any Number in C# Object: How to Input any Number in c#, Input, and output in C#. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Class_02 { class Program { static void Main(string[] args) { int num1,num2,sum; Console.WriteLine(“Enter Number 01 : “); num1 …

How to Input any Number in C# Read More »

C# Program that Subtracts two user defined numbers

C# Program that Subtracts two user defined numbers

C# Program that Subtracts two user-defined numbers Object: Make a class for subtraction, define a method sub, which subtracts two user-defined numbers. Call it in the main program. C# Projects with Source Code Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Lab1b { class subtraction { public void sub(int a, int …

C# Program that Subtracts two user defined numbers Read More »

C# Program Calculating the Area of a Rectangle

C# Program Calculating the Area of a Rectangle

C# Program Calculating the Area of a Rectangle Object: Let us consider a Rectangle object. It has attributes such as length and width. Depending upon the design, it may need ways for accepting the values of these attributes, calculating the area, and displaying details. C# Projects. Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; …

C# Program Calculating the Area of a Rectangle Read More »