题解 2767: 计算多项式的值

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

筛选

C++简单解法

摘要:解题思路:属于基础题目,重要的是知道如何控制小数点后面的部分的位数注意事项:参考代码:#include<iostream>#include<cmath>#include<……

题解 2767: 计算多项式的值

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    double a,b,c,d,x,fx;    ci……

题解 2767: 计算多项式的值

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

2767: 计算多项式的值

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

java--study||O.o

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

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

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

甲流疫情死亡率

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

2767: 计算多项式的值

摘要:解题思路:先inta,b,c,d,x再带入就好注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a,b,c……

计算多项式的值

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