Question
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.
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
enter ID, ID
enter number of policies sold, N
if N > 25
print ID, N
endif
Related Questions
Draw a flow-chart and Write a program that asks the user to enter students grades. The program shoul...
Given that s= n/2{ 2a + (n-1) d} is the formula for the sum of an AP, what is a flow chart and a BAS...
Draw flow chart and write algorithm description that accepts three marks of the student then print t...
Draw a flow chart to represent the logic of a program that allows the user to enter five values. Th...