题解 2825: 计算多项式的值

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

筛选

2825: 计算多项式的值

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    double x,a,sum = 0;//要复出值  ……

2825: 计算多项式的值

摘要:解题思路:注意事项:此代码未通过,不知道问题出在哪里参考代码:a, b = map(str, input().split())a = float(a)b = int(b)s = 0for i in r……

计算多项式的值

摘要:##计算多项式的值 如下 ``` #include using namespace std; int main(){ double x,n,x2=1; cin>>x>>n; do……

计算多项式的值

摘要:解题思路:注意事项:还是要注意数据的使用类型范围!参考代码:#include<stdio.h>int main(){    double x,t=1,s=1;    int n;    scanf("……

2825: 计算多项式的值

摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    double x,a,c = 0;;    int n;    cin>>……