| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 131716 | 李昱龙 | 06计算f(x)的值 | C++ | Accepted | 1 MS | 268 KB | 281 | 2025-10-01 10:26:48 |
#include <bits/stdc++.h> using namespace std; int main (){ double a,b,c,d,x; double j; scanf("%lf%lf%lf%lf%lf",&x,&a,&b,&c,&d); double as = x*x; double s = as*x; j = a*s+b*as+c*x+d; printf("%.5lf",j); return 0; }