I want to write a program that asks the user to enter in several digits
ex: 3,4,9,2
And then have it displayed as
3 ***
4 ****
9 *********
2 **
I thought I needed to use a for loop to do this, but the one I have written so far only displays one * for the first number entered, and doesn't display the last 3 numbers. Anyone know what I can do to get this to work? Thank you!