My question is how to write a C # console application that prompts the user fora name , social security number, hourly pay rate, and number of hours worked. Display all the input data as well as the the following:
--Gross Pay, defined as hourly pay rate times hours worked
--Pension fund, defined as 12% of the gross pay
--State withholding tax, defined as 15% of the gross pay
net pay, defined as gross pay minus taxes?
1
Expert's answer
2012-09-13T11:35:15-0400
using System; using System.Collections.Generic; using System.Linq; using System.Text;
Comments
Leave a comment