2825: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double x,a,sum = 0;//要复出值 …… 题解列表 2024年01月18日 0 点赞 0 评论 58 浏览 评分: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
不知道为什么不能用pow函数算,奇怪 摘要:解题思路:注意事项:要自己定义循环来算,用pow函数就会报错参考代码:#include<stdio.h>#include<math.h>intmain(void){…… 题解列表 2025年01月23日 0 点赞 0 评论 23 浏览 评分:0.0
计算多项式的值 摘要:##计算多项式的值 如下 ``` #include using namespace std; int main(){ double x,n,x2=1; cin>>x>>n; do…… 题解列表 2023年11月15日 0 点赞 0 评论 114 浏览 评分:0.0
编写题解 2825: 计算多项式的值,python超简单 摘要:x,n = input().split() x = float(x) n = int(n) # 初始化result和item变量 result = 1.0 item = 1.0 # 使用…… 题解列表 2024年03月27日 0 点赞 0 评论 163 浏览 评分:0.0
题解 2825: 计算多项式的值 (记录本题另一种计算结果精度损失的计算方式) 摘要:```c #include int main() { int i,j,n; double x,count=1.0,count_part; scanf("…… 题解列表 2024年04月05日 0 点赞 1 评论 137 浏览 评分: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