题解 2825: 计算多项式的值

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

筛选

题解 2825: 计算多项式的值

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

666666666666666666

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

2825: 计算多项式的值

摘要:解题思路:由题目可知,该多项式是等比数列之和,因此我们要找到他的通项公式通项公式为:a n  =a的1次方*x的n-1次方注意事项:参考代码:#include<stdio.h> int main(){……

2825: 计算多项式的值(C)

摘要:参考代码:#include<stdio.h> #include<math.h> int main() {     double x;     int n;     scanf("%lf……

2825: 计算多项式的值

摘要:解题思路:注意事项:参考代码:x,n = map(float,input().split())n = int(n)s = 0t = 1for i in range(n+1):    s += t   ……

2825: 计算多项式的值

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

2825: 计算多项式的值

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

计算多项式的值

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