题解 2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; p…… 题解列表 2024年08月21日 0 点赞 0 评论 251 浏览 评分:9.9
计算多项式的值 摘要:注意事项:如果用float类型,所输出的值最后两位精度不够,应选用double类型参考代码:#include<stdio.h>int main(){ double x,a,b,c,d; scanf("…… 题解列表 2022年11月20日 0 点赞 0 评论 650 浏览 评分:9.0
2767: 计算多项式的值 摘要:解题思路:注意事项:先输x后写abcd参考代码:#includeusing namespace std;int main(){ double a,b,c,d,x; cin >>x>>a>>…… 题解列表 2023年11月05日 0 点赞 2 评论 114 浏览 评分: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 评论 253 浏览 评分: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 评论 420 浏览 评分: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 评论 330 浏览 评分:4.7
2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年10月31日 0 点赞 0 评论 100 浏览 评分:2.0
计算多项式的值:解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,a,b,c,d; scanf("%lf %lf %…… 题解列表 2023年11月09日 0 点赞 0 评论 95 浏览 评分:0.0
2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double f,a,b,c,d…… 题解列表 2023年06月03日 0 点赞 0 评论 114 浏览 评分:0.0
计算多项式的值(注意事项) 摘要:解题思路:注意事项: 输入仅一行,包含5个实数,分别是x,及参数a、b、c、d的值,每个数都是绝对值不超过100的双精度浮点数。这里的每个数都是绝对值不超过100的双精度浮点数。指的是a、b、c、d并…… 题解列表 2023年01月03日 0 点赞 0 评论 166 浏览 评分:0.0