Question
Take the code shell below and build a c# console program: Write the code in main to declare any needed local variables, take entries for
Take the code shell below and build a c# console program:
Write the code in main to declare any needed local variables, take entries for the first name, last name and raw pay. Create a myPayfile object, passing as arguments to the constructor the first name, last name and raw pay entered from the console. Call the adjustPay class method. Display the class object data to the console. The outline of the class is given as follows:
class myPayfile
{
//declare the class variables
private string last_name;
private string first_name;
private double gross_pay;
//no argument constructor (not used)
public myPayfile()
{
}
//three-argument constructor to set the values input to the console
public myPayfile(string fname, string lname, double pay)
{
}
//public class method to return the individual value
public string getLast_Name()
{
}
//public class method to return the individual value
public string getFirst_Name()
{
}
//public class method to return the individual value
public double getGross_Pay()
{
}
//public class method to recompute the pay value
public void adjustPay()
{
//adjust the pay by multiplying it by a factor of 1.2
}
}
The output should look something like this:
Enter the first name Richard
Enter the last name Stutte
Enter the raw pay 50000
The adjusted pay is $60,000.00 for Richard Stutte
Press any key to continue . . .
Step by Step Solution
3.45 Rating (164 Votes )
There are 3 Steps involved in it
Step: 1
Code to Copy using System namespace consoleApp5 class myPayfile declare the class variables private string lastname private string firstname private double grosspay no argument constructor not used pu...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started