Sequence Ex 3 - Employee Pay

Created By: M Ritter | Difficulty Level: 1

Description

An insurance company pays its employees a salary of $100 per week plus $15 per hour for every hour worked during the week. Create an algorithm to calculate the weekly pay for an employee.

Puzzle

Drag from here

  • BEGIN
  • END
  • CALCULATE pay = hours * 15 + 100
  • INPUT hours
  • OUTPUT pay

Construct your solution here