Problem restatement: Compute the amount of a paycheck for an hourly employee. Analysis questions: 1. What output is expected Amount of a paycheck. 2. What format is required for the output Dollars and cents. 3. What calculation must be performed? paycheck = numberOfHours * hourlyRate 4. What data is needed for the calculations? a. Hourly rate of pay b. Number of hours worked 5. What data do I have to work with? a. Employees do not get paid extra for overtime b. Each hour worked receives the same pay c. Fractions of an hour worked receives fractions of an hour paid Algorithm: 1. Get the number of hours worked 2. Get the hourly rate of pay 3. Calculate paycheck according to the formula: paycheck = numberOfHours * hourlyRate 4. Display the amount of the paycheck