题解 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 评论 169 浏览 评分:0.0
2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年10月31日 0 点赞 0 评论 100 浏览 评分:2.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 评论 332 浏览 评分:4.7
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
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 评论 254 浏览 评分:6.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
计算多项式的值 摘要:注意事项:如果用float类型,所输出的值最后两位精度不够,应选用double类型参考代码:#include<stdio.h>int main(){ double x,a,b,c,d; scanf("…… 题解列表 2022年11月20日 0 点赞 0 评论 650 浏览 评分:9.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 评论 292 浏览 评分:9.9
题解 2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b,c,d,x,fx; ci…… 题解列表 2023年11月04日 0 点赞 0 评论 173 浏览 评分:9.9
编写题解 2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {public static void main(String[]args){ …… 题解列表 2023年12月13日 0 点赞 0 评论 498 浏览 评分:9.9