常规解法使用map函数 摘要:解题思路:使用map函数注意事项:输入字符类型为float参考代码:x,a,b,c,d=map(float,input().split())fx=a*x**3+b*x**2+c*x+dprint(…… 题解列表 2025年02月17日 0 点赞 0 评论 43 浏览 评分:0.0
python,基础运算 摘要:解题思路:注意事项:参考代码:nums = list(map(float, input().strip().split()))x, a, b, c, d = numsfx = a * x ** 3 +…… 题解列表 2024年12月20日 0 点赞 0 评论 115 浏览 评分:0.0
题解 2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; p…… 题解列表 2024年08月21日 0 点赞 0 评论 249 浏览 评分:9.9
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 评论 417 浏览 评分:5.3
2767: 计算多项式的值 摘要:解题思路: 先思考数学中的式子,拿到C语言中该如何解决 a,b,c,d,x 是我们自己输入的是给定的值 X的三次方就是3个X相乘 X*X*X 那就好解决咯参考代码:#include<s…… 题解列表 2024年02月26日 0 点赞 0 评论 544 浏览 评分:9.9
计算多项式的值 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double x, a, b, c, d; scanf("%lf %lf %lf %lf %lf"…… 题解列表 2024年01月19日 0 点赞 0 评论 95 浏览 评分:0.0
java--study||O.o 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2024年01月04日 0 点赞 0 评论 300 浏览 评分:9.9
如有漏洞请指出谢谢 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年01月01日 0 点赞 0 评论 88 浏览 评分:0.0
编写题解 2767: 计算多项式的值 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {public static void main(String[]args){ …… 题解列表 2023年12月13日 0 点赞 0 评论 488 浏览 评分:9.9
计算多项式的值:解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,a,b,c,d; scanf("%lf %lf %…… 题解列表 2023年11月09日 0 点赞 0 评论 94 浏览 评分:0.0