PROGRAMMING:Results in descending order
Write a program, input n (n < 30) students' C language test scores (integer) from the keyboard and store them in the array, sort them according to the scores from high to low, and output the sorted scores.
###Input format:
The user enters n values and N grades
###Output format:
Output the results of descending order of scores, with a space after each score
###Input example:
```in
ten
58 50 100 94 37 96 62 80 14 55
```
###Output example:
The corresponding output is given here. For example:
```out
100 96 94 80 62 58 55 50 37 14
```
answer:If there is no answer, please comment
###Input format:
The user enters n values and N grades
###Output format:
Output the results of descending order of scores, with a space after each score
###Input example:
```in
ten
58 50 100 94 37 96 62 80 14 55
```
###Output example:
The corresponding output is given here. For example:
```out
100 96 94 80 62 58 55 50 37 14
```
answer:If there is no answer, please comment