Design a flowchart for a program that will read SALES from each record, print each sales amount, and print the number of records read.

1 answer

n=0
while read sales {
n++
print n,sales
}
print n