· Sort these numbers into descending sequence in some kind of loop structure
· Create code that will eliminate duplicate entries as they are sorted. Code to eliminate duplicates should be part of the regular sort process (either before, during, or after the “sort code”).
· If the user enters 2 number 3’s, and 3 number 4’s…how can you indicate that you have 1 duplicate 3, and 2 duplicate 4’s. (You cannot use the same indicator for all duplicates).
· Show the original order of the numbers.
· Show the interim sequences of the numbers.
· After every comparison of two numbers PRINT the sequence….code a PAUSE at the bottom of the loop so you can watch the sort process.
· Show the final sequence of the numbers.
I LITERALLY HAVE NO IDEA WHAT TO DO IM STARING AT A BLANK SCREEN