account number



Create an application that allows the user to enter a charge account number. The application should determine whether the number is valid by comparing it to the numbers in the following list: (see code)



The list of numbers should be stored in an array. A sequential search should be used to locate the number entered by the user. If the user enters a number that is in the array, the program should display a message indicating the number is valid. If the user enters a number that is not in the array , the program should display a message indicating the number is invalid.