Sequence Ex 5 - Paint Calculator

Created By: M Ritter | Difficulty Level: 1

Description

A painter requires a program to calculate the number of litres of paint needed for a job. One litre of paint will cover 16 square metres of wall. Plan a solution that will accept the length and height of the wall, determine the number of square metres to be painted and then show the number of litres of paint needed.

Puzzle

Drag from here

  • END
  • INPUT height
  • CALCULATE metres = length * height
  • BEGIN
  • CALCULATE paint = metres / 16
  • INPUT length
  • OUTPUT paint

Construct your solution here