printCoupons( )
const num MONTHS = 12
const num YEARS = 30
num monthcounter
num yearcounter
while yearcounter <= YEARS
while monthcounter <= 12
print month, year, "Remenber to send your payment by the 10th."
yearcounter = yearcounter + 1
endwhile
endwhile
endwhile
return
It is meant to print 360 payment coupons for a new borrower, and each coupon lists the month number, year number, and a friendly reminder.
2007-11-10
07:11:21
·
2 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design