Write a program that asks the user to enter today’s sales for five stores. The program should display a bar chart comparing each store’s sales. Create each bar in the chart by displaying a row of asterisks. Each asterisk should represent $100 of sales.
Here is example of the program’s output:
Enter today’s sales for stores 1: 1000
Enter today’s sales for stores 2: 1200
Enter today’s sales for stores 3: 1800
Enter today’s sales for stores 4: 800
Enter today’s sales for stores 5: 1900
Sales Bar Chart:
Store 1: **********
Store 2: ************
Store 3: ******************
Store 4: ********
Store 5: *******************
Breaking it down
Output
Unit tests
Level Up
Modify program to allow user to enter a character to make up the bar chart.