题解列表

筛选

Dinner-题解(C++代码)

摘要:```cpp #include using namespace std; int main(){ int n; // "bowl", "knife", "fork" ,"ch……

绝对值排序-题解(Python代码)

摘要:用sorted()函数将绝对值从大到小排序,返回一个排序后的新列表 ```python import math while True: lit=list(map(int,input()……