题解列表

筛选

2915: 接水问题

摘要:```cpp #include using namespace std; int main() { int n,m,w[10000],x[10000],s=1,max=0; ……

2923: 病人排队

摘要:```cpp #include using namespace std; typedef struct a { char m[20]; int age; }T; int……

【Python题解】Poker排序

摘要:解题思路:利用列表的 list.sort(key=(lambda)) 方法,具体见代码注释。参考代码:s = input().replace('10', 't')  #……

二级C语言-阶乘数列(水题)

摘要:解题思路:注意事项:unsigned long long 放不下,用double放参考代码:#include <stdio.h>double f(int n){    if(n==1) return ……