Write a program that determines which of five salespeople (David, John, Laura, Andy, Cathy) had the lowest reported sales last year. It should have the following two functions which are called by main.
double getSalesAmt() is passed the name of the salesperson. It asks the user for the amount of sales for the salesperson during the last year, validates the input, then returns it. it should be called once for each salesperson. void find Lowest() is passed the five salespeople.
It determines which is the lowest and prints the name of the person, along with its amount.
Input Validation: Do not accept an amount that is less than 0.
Clean and clear output Your code should implement at least two functions.