计算多项式的值:解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,a,b,c,d; scanf("%lf %lf %…… 题解列表 2023年11月09日 0 点赞 0 评论 129 浏览 评分:0.0
甲流疫情死亡率 摘要:解题思路:注意事项:评个价再走参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b;…… 题解列表 2023年11月05日 0 点赞 0 评论 128 浏览 评分:9.9
2767: 计算多项式的值 摘要:解题思路:注意事项:先输x后写abcd参考代码:#includeusing namespace std;int main(){ double a,b,c,d,x; cin >>x>>a>>…… 题解列表 2023年11月05日 0 点赞 2 评论 141 浏览 评分:7.3
题解 2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b,c,d,x,fx; ci…… 题解列表 2023年11月04日 0 点赞 0 评论 223 浏览 评分:9.9
2767: 计算多项式的值 摘要:解题思路:先inta,b,c,d,x再带入就好注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ double a,b,c…… 题解列表 2023年11月01日 0 点赞 0 评论 192 浏览 评分:9.9
2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年10月31日 0 点赞 0 评论 128 浏览 评分:2.0
计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,a,b,c,d; scanf("%lf %lf %…… 题解列表 2023年10月29日 0 点赞 0 评论 645 浏览 评分:9.9
计算多项式的值(注意:输入顺序是x,a,b,c,d) 摘要:参考代码: ```c #include int main() { double a,b,c,d,x; scanf("%lf%lf%lf%lf%lf",&x,&a,&b,&c,&d); …… 题解列表 2023年09月02日 0 点赞 0 评论 161 浏览 评分:0.0
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 评论 284 浏览 评分:6.0