how do you write a flow chart for program that accepts a salespersons ID num and num of policies sold in the last month, and displays the data only if the salesperson is a high performer-a person who sells more than 25 policies in the month?.. Im lost on this one.

2 answers

What programming language?
You can work on the flow-chart based on a pseudocode such as:

enter ID, ID
enter number of policies sold, N
if N > 25
print ID, N
endif