题解 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
甲流疫情死亡率 摘要:解题思路:注意事项:评个价再走参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b;…… 题解列表 2023年11月05日 0 点赞 0 评论 100 浏览 评分:9.9
计算多项式的值 摘要:注意事项: 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: 计算多项式的值 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {public static void main(String[]args){ …… 题解列表 2023年12月13日 0 点赞 0 评论 498 浏览 评分:9.9
计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,a,b,c,d; scanf("%lf %lf %…… 题解列表 2023年10月29日 0 点赞 0 评论 608 浏览 评分:9.9
java--study||O.o 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2024年01月04日 0 点赞 0 评论 302 浏览 评分: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 评论 165 浏览 评分: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 评论 578 浏览 评分:9.9
2767: 计算多项式的值 摘要:解题思路: 先思考数学中的式子,拿到C语言中该如何解决 a,b,c,d,x 是我们自己输入的是给定的值 X的三次方就是3个X相乘 X*X*X 那就好解决咯参考代码:#include<s…… 题解列表 2024年02月26日 0 点赞 0 评论 547 浏览 评分:9.9
题解 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