题解 2767: 计算多项式的值

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

筛选

计算多项式的值(注意事项)

摘要:解题思路:注意事项: 输入仅一行,包含5个实数,分别是x,及参数a、b、c、d的值,每个数都是绝对值不超过100的双精度浮点数。这里的每个数都是绝对值不超过100的双精度浮点数。指的是a、b、c、d并……

计算多项式的值

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

ikun崩溃代码

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

如有漏洞请指出谢谢

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

计算多项式的值:解题思路

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

题解 2767: 计算多项式的值

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

计算多项式的值

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

2767: 计算多项式的值

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){   double f,a,b,c,d……