Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Following is a complete code that I did. Public class Main { public static void main ( String [ ] args ) { int hours

Following is a complete code that I did.
Public class Main{
public static void main( String[] args){
int hours =40;
double grossPay, payRate =25.0;
double fedTaxRate =0.15, fedTax;
double stateTaxRate =0.05, stateTax, netPay;
grossPay = hours * payRate;
fedTax = fedTaxRate * grossPay;
stateTax = stateTaxRate * grossPay;
netPay = grossPay - fedTax - stateTax;
System.out.println("Gross pay = $ "+ grossPay +
"
Federal tax = $ "+ fedTax +"
State tax = $ "+ stateTax +
"
Net pay = $ "+ netPay);
}
}
Rewrite the above problem to include four additional methods
called, getGrossPay, getFedTax, getStateTax and getNetPay.
Pass the variables, hours and pay_rate from main method to each
of the four methods, compute values and return them back to the
main method to print values.

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

Database Administration The Complete Guide To Dba Practices And Procedures

Authors: Craig S. Mullins

2nd Edition

0321822943, 978-0321822949

More Books

Students also viewed these Databases questions