题解 2767: 计算多项式的值

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

筛选

2767: 计算多项式的值

摘要:解题思路:  先思考数学中的式子,拿到C语言中该如何解决   a,b,c,d,x  是我们自己输入的是给定的值   X的三次方就是3个X相乘 X*X*X   那就好解决咯参考代码:#include<s……

计算多项式的值

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

计算多项式的值

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

计算多项式的值

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

ikun崩溃代码

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

题解 2767: 计算多项式的值

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