不知道为什么不能用pow函数算,奇怪 摘要:解题思路:注意事项:要自己定义循环来算,用pow函数就会报错参考代码:#include<stdio.h>#include<math.h>intmain(void){…… 题解列表 2025年01月23日 0 点赞 0 评论 23 浏览 评分: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: 计算多项式的值 (记录本题另一种计算结果精度损失的计算方式) 摘要:```c #include int main() { int i,j,n; double x,count=1.0,count_part; scanf("…… 题解列表 2024年04月05日 0 点赞 1 评论 136 浏览 评分:0.0
2825: 计算多项式的值 摘要:解题思路:由题目可知,该多项式是等比数列之和,因此我们要找到他的通项公式通项公式为:a n =a的1次方*x的n-1次方注意事项:参考代码:#include<stdio.h> int main(){…… 题解列表 2024年04月02日 0 点赞 0 评论 158 浏览 评分:0.0
计算多项式的值,使用pow()函数精度不符合要求 摘要:解题思路:注意事项:参考代码://本来想用Java来写,但是如果输入的x是小数,Java的精度会不太足,所以没通过,只能用C来写了//使用pow()函数精度不符合要求 double x ; …… 题解列表 2023年10月10日 0 点赞 0 评论 158 浏览 评分:8.0
计算多项式的值(注意了你最后统计结果值的时候要用double类型,用float类型不行,估计是小了,还有pow()函数不能用,估计是精度问题,这种我一直都觉得有点迷迷糊糊的) 摘要:参考代码: ```c #include #include int main() { float x; int n; scanf("%f%d",&x,&n); double s…… 题解列表 2023年10月03日 0 点赞 0 评论 202 浏览 评分:9.9
计算多项式的值 摘要:解题思路:注意事项:还是要注意数据的使用类型范围!参考代码:#include<stdio.h>int main(){ double x,t=1,s=1; int n; scanf("…… 题解列表 2023年07月30日 0 点赞 0 评论 170 浏览 评分:0.0
2825: 计算多项式的值 摘要:解题思路:这个题在做题的时候不要用pow()函数来做,用函数来做,精度会不符合要求,尝试了几次用pow函数解决,结果都不能完全正确通过注意事项:参考代码:#include<cstdio> #incl…… 题解列表 2023年04月12日 0 点赞 2 评论 508 浏览 评分:9.9
2825: 计算多项式的值(C) 摘要:参考代码:#include<stdio.h> #include<math.h> int main() { double x; int n; scanf("%lf…… 题解列表 2023年02月28日 0 点赞 0 评论 208 浏览 评分:0.0