You need help writing this program in java, it has to look exactly like the sample output
Write a program to do the following:
Ask the user to enter the total sales for a chain of stores that you own. The number of stores will vary for each user input
Display the total sales in a bar graph for each store.
The graph should use asterisks with each asterisk representing $100 of a sale.
Input Validation:
The input must be evenly divisible by 100
Requirements:
The output must match exactly mine.
The graphs must be dynamically generated based on the user input.
You must use (for) loops to solve the problem you are NOT allowed to use arrays.