1. Python 中可以使用 `sorted()` 函数或列表的 `sort()` 方法:
```python
scores = [95, 88, 76, 99, 83]
sorted_scores = sorted(scores, reverse=True) 降序排序
或者
scores.sort(reverse=True) 在原列表上排序
```
2. JavaScript 中可以使用 `Array.prototype.sort()` 方法:
```javascript
let scores = [95, 88, 76, 99, 83];
scores.sort((a, b) => b a); // 降序排序
```
3. Java 中可以使用 `Arrays.sort()` 方法:
```java
Integer[] scores = {95, 88, 76, 99, 83