Answer:

An IF-THEN-ELSE structure is appropriate.

Calculating the Price per Copy

The cost per copy is:

For now, just concentrate on this part of the program. Here is a program fragment that calculates the cost per copy:

    ' per copy price calculation
    IF COPIES  < 6 THEN
       LET PERCOPY = _____________
    ELSE
       LET PERCOPY = _____________
    END IF

QUESTION 12:

Fill in the blanks so that this program fragment matches the cost per copy information.