+ 4
Java program
Write an application that prompts an employee for an hourly pay rate and hours worked. Compute gross pay (hours times rate), withholding tax, and net pay (gross pay minus withholding tax). Withholding tax is computed as a percentage of gross pay based on the following: Gross Pay <= $300.00 use 10% withholdings Gross Pay > $300.00 use 12% withholdings.
2 Answers
0
System.out.println(); and The Scanner class with the input stream System.in as a parameter for the object will be your best friends for this project. Scanner input = new Scanner(System.in); input.nextLine(); ...etc
0
Ok