题解 2767: 计算多项式的值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

计算多项式的值

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    double x, a, b, c, d;    scanf("%lf %lf %lf %lf %lf"……

2767: 计算多项式的值

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai……

python 计算多项式的值

摘要:解题思路:比较简单,仍用map函数注意事项:参考代码:x,a,b,c,d=map(float,input().split())print(&#39;%.7f&#39;%(a*x*x*x+b*x*x+c……

2767: 计算多项式的值

摘要:解题思路:注意事项:先输x后写abcd参考代码:#includeusing namespace std;int main(){    double a,b,c,d,x;    cin >>x>>a>>……

计算多项式的值

摘要:注意事项:如果用float类型,所输出的值最后两位精度不够,应选用double类型参考代码:#include<stdio.h>int main(){ double x,a,b,c,d; scanf("……

计算多项式的值(C++)

摘要:解题思路:注意事项:作者很懒什么也没留下                                                                  &

甲流疫情死亡率

摘要:解题思路:注意事项:评个价再走参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a,b;    cin>>a>>b;……