sort
Submit solution
Points:
10 (partial)
Time limit:
1.0s
Memory limit:
64M
Authors:
Problem type
Allowed languages
Java 19, Java 8
Description
輸入4個整數,幫我做降序(大⭢小)。
Sample input & output
Input #1
1 2 3 4
Output #1
4 3 2 1
Input #2
9 -1 3 0
Output #2
9 3 0 -1
Comments