2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double f,a,b,c,d…… 题解列表 2023年06月03日 0 点赞 0 评论 129 浏览 评分:0.0
计算多项式的值 摘要:注意事项: x先输入,之后输入a,b,c,d参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a,b,c,d,…… 题解列表 2023年04月08日 0 点赞 0 评论 541 浏览 评分:9.9
计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>#include<iomanip>using namespace std;int main(){ do…… 题解列表 2023年03月13日 0 点赞 0 评论 170 浏览 评分:0.0
题解 2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a, b, c, d,x; scanf("%lf %lf %lf %lf %lf", &x, &a…… 题解列表 2023年03月01日 0 点赞 0 评论 195 浏览 评分:0.0
之前那个写错了,抱歉抱歉,谢谢你们的提醒 摘要:解题思路:注意事项:参考代码:#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 评论 366 浏览 评分:4.7
ikun崩溃代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double a,b,c,d,x,z; scanf("%lf %lf %lf %lf %lf",&x,&a,…… 题解列表 2023年01月30日 0 点赞 0 评论 167 浏览 评分:0.0
2767: 计算多项式的值 摘要:```cpp #include #include using namespace std; int main() { double f,a,b,c,d,s; cin>>f…… 题解列表 2023年01月11日 0 点赞 0 评论 598 浏览 评分:9.9
计算多项式的值(注意事项) 摘要:解题思路:注意事项: 输入仅一行,包含5个实数,分别是x,及参数a、b、c、d的值,每个数都是绝对值不超过100的双精度浮点数。这里的每个数都是绝对值不超过100的双精度浮点数。指的是a、b、c、d并…… 题解列表 2023年01月03日 0 点赞 0 评论 188 浏览 评分:0.0
计算多项式的值 摘要:注意事项:如果用float类型,所输出的值最后两位精度不够,应选用double类型参考代码:#include<stdio.h>int main(){ double x,a,b,c,d; scanf("…… 题解列表 2022年11月20日 0 点赞 0 评论 840 浏览 评分:9.0