题解列表

筛选

计算多项式的值

摘要:注意事项: x先输入,之后输入a,b,c,d参考代码:#include<bits/stdc++.h>using namespace std;int main(){    double a,b,c,d,……

2860基础解法(Python)

摘要:解题思路:全小写(大写)、替换空格、删除冗余注意事项:一定要加strip()参考代码:n1 = input().lower().replace(&#39; &#39;, &#39;&#39;).str……