' per copy price calculation IF COPIES < 6 THEN LET PERCOPY = 0.15 ELSE LET PERCOPY = 0.07 END IF
Here is the looping part of the program. Check that it counts from 1 copy to 50 copies, as we want it to. The work of the loop body is shown in comments.
PRINT "Number of Copies", "Price" FOR COPIES = 1 TO 50 ' price per copy calculation ' print this line of table NEXT COPIES ' END
The per copy price calculation is given in the answer (above). Here is a fragment that calculates total price and prints out a line of the table:
' print a line of the table PRINT COPIES, COPIES * PERCOPY
Fit the three pieces together to for a complete working program.