Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2602 | 黄宜洋 | 06计算f(x)的值 | C++ | Accepted | 0 MS | 256 KB | 229 | 2024-01-14 10:22:32 |
# include<cstdio> # include<iostream> using namespace std; int main(){ double a,b,c,d,x,fx; scanf("%lf%lf%lf%lf%lf",&x,&a,&b,&c,&d); fx = a*x*x*x+b*x*x+c*x+d; printf("%.5lf",fx); return 0; }