计算多项式的值 摘要:注意事项: x先输入,之后输入a,b,c,d参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a,b,c,d,…… 题解列表 2023年04月08日 0 点赞 0 评论 978 浏览 评分:9.9
题解 2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; p…… 题解列表 2024年08月21日 0 点赞 0 评论 804 浏览 评分:9.9
2767: 计算多项式的值 摘要:```cpp #include #include using namespace std; int main() { double f,a,b,c,d,s; cin>>f…… 题解列表 2023年01月11日 0 点赞 0 评论 928 浏览 评分:9.9
计算多项式的值 摘要:注意事项:如果用float类型,所输出的值最后两位精度不够,应选用double类型参考代码:#include<stdio.h>int main(){ double x,a,b,c,d; scanf("…… 题解列表 2022年11月20日 0 点赞 0 评论 1214 浏览 评分:9.0
2767: 计算多项式的值 摘要:解题思路:注意事项:先输x后写abcd参考代码:#includeusing namespace std;int main(){ double a,b,c,d,x; cin >>x>>a>>…… 题解列表 2023年11月05日 0 点赞 2 评论 431 浏览 评分:7.3
2767: 计算多项式的值 (c语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b,c,d,x,f; scanf("%lf%lf%lf%lf%lf\n",&x,&a,&b,&…… 题解列表 2023年07月01日 0 点赞 0 评论 615 浏览 评分:6.0
python 计算多项式的值 摘要:解题思路:比较简单,仍用map函数注意事项:参考代码:x,a,b,c,d=map(float,input().split())print('%.7f'%(a*x*x*x+b*x*x+c…… 题解列表 2024年03月14日 0 点赞 1 评论 957 浏览 评分:5.3
之前那个写错了,抱歉抱歉,谢谢你们的提醒 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b,c,d,x; scanf("%lf%lf%lf%lf%lf",&x,&a,&b…… 题解列表 2023年02月25日 0 点赞 0 评论 835 浏览 评分:4.7
2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年10月31日 0 点赞 0 评论 548 浏览 评分:2.0
计算多项式的值:解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,a,b,c,d; scanf("%lf %lf %…… 题解列表 2023年11月09日 0 点赞 0 评论 621 浏览 评分:0.0