I need to write a program for someone to enter 5 numbers from 10 to 100 but I don't know how i can eliminate duplicates? Anybody got any bright ideas on how i can do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Use a Set implementation whic by definition does not contain duplicates...
outputs: 1 2 3 4 5 |
|||
|
|
Add them into For example:
|
||||
|
|
|
Keep track of numbers entered so far. If a user's input has been entered already ask the user to re-enter another number. |
|||
|
|
|
This is not as trivial as it seems. But after a little while I came to this:
|
|||||
|
|
||||
|