Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

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

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Business Process Driven Database Design With Oracle PL SQL

Authors: Rajeev Kaula

1st Edition

1795532386, 978-1795532389

More Books

Students also viewed these Databases questions