Help with array

Does anyone understand what this problem is asking me to do? I understand I have to use a loop and array, but the rest isn't clear to me.

"Write a program that uses a loop and an array. The program will prompt the user to enter values between 1 and 100 use -99 to stop. The program will display the values back to the user."

closed account (SECMoG1T)
the rest:
- inside a loop get a value from the user.
- check if the value satisfies the conditions given above
if value is -99 exit the loop .
else store.
///you should be aware of if and else statements (conditional evaluation)

- use another loop to print your stored value.
Topic archived. No new replies allowed.