题解列表

筛选

汽水瓶(python代码)

摘要:def printf(x):     total = 0     c = x//3     total = total+c     d = x%3     x = d+c  

c语言字符串p型编码

摘要:```c #include #include int main () { char ch[1000] = {},cha; int rec=1; gets(ch); //直接使用gets……

小白能看懂的

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() {     int m =……

python二分法求函数零点

摘要:参考代码:def compute(x):    return pow(x,5)-15*pow(x,4)+85*pow(x,3)-225*pow(x,2)+274*x-121def num(l,r): ……