Please Design a pseudocode and flowchart
Design flowchart and write a modular program, that with ask a user to enter 10 car license plate numbers
Subject:Computer SciencePrice: Bought3
Share With
Please Design a pseudocode and flowchart
Design flowchart and write a modular program, that with ask a user to enter 10 car license plate numbers.
REQUIRED: Your program must use a minimum of 3 modules/functions, in addition to Main(), as part of your solution.
General description of what the modules/functions should do:
Ask for user input
Sort the license plates
Display the results
When prompting the user, you will show the user how many license plate numbers they have entered using the prompt below:
Examples of the prompt to use (two examples shown below):
Please enter license plate 1 of 10:
Please enter license plate 2 of 10:
Store the license plate numbers in a single dimension array.
Sort and display the list of license plate numbers, in ascending order, using a Selection Sort.