题解 2825: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double x,n,sum=1,a; cin>…… 题解列表 2024年01月19日 0 点赞 0 评论 112 浏览 评分:9.9
计算多项式的值,使用pow()函数精度不符合要求 摘要:解题思路:注意事项:参考代码://本来想用Java来写,但是如果输入的x是小数,Java的精度会不太足,所以没通过,只能用C来写了//使用pow()函数精度不符合要求 double x ; …… 题解列表 2023年10月10日 0 点赞 0 评论 158 浏览 评分:8.0
666666666666666666 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n;double x,xn=1,sum=1;int main(){ scan…… 题解列表 2023年02月22日 0 点赞 0 评论 255 浏览 评分:7.3
2825: 计算多项式的值 摘要:解题思路:由题目可知,该多项式是等比数列之和,因此我们要找到他的通项公式通项公式为:a n =a的1次方*x的n-1次方注意事项:参考代码:#include<stdio.h> int main(){…… 题解列表 2024年04月02日 0 点赞 0 评论 159 浏览 评分:0.0
2825: 计算多项式的值(C) 摘要:参考代码:#include<stdio.h> #include<math.h> int main() { double x; int n; scanf("%lf…… 题解列表 2023年02月28日 0 点赞 0 评论 208 浏览 评分:0.0
2825: 计算多项式的值 摘要:解题思路:注意事项:参考代码:x,n = map(float,input().split())n = int(n)s = 0t = 1for i in range(n+1): s += t …… 题解列表 2024年07月31日 0 点赞 0 评论 77 浏览 评分:0.0
2825: 计算多项式的值 摘要:解题思路:注意事项:此代码未通过,不知道问题出在哪里参考代码:a, b = map(str, input().split())a = float(a)b = int(b)s = 0for i in r…… 题解列表 2024年01月13日 0 点赞 3 评论 133 浏览 评分:0.0
这题要求高(注意1.用double类型2.不用pow函数) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,sum=1,a=1; int n,i; sc…… 题解列表 2024年11月29日 0 点赞 0 评论 79 浏览 评分:0.0
2825: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double x,a,sum = 0;//要复出值 …… 题解列表 2024年01月18日 0 点赞 0 评论 58 浏览 评分:0.0
计算多项式的值 摘要:解题思路:注意事项:还是要注意数据的使用类型范围!参考代码:#include<stdio.h>int main(){ double x,t=1,s=1; int n; scanf("…… 题解列表 2023年07月30日 0 点赞 0 评论 170 浏览 评分:0.0