| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148318 | 李沐阳 | 06计算f(x)的值 | C++ | Accepted | 0 MS | 272 KB | 178 | 2026-02-11 10:34:58 |
#include<iostream> #include<cstdio> using namespace std; int main() { double a,b,c,d,x,s; cin>>x>>a>>b>>c>>d; s=a*x*x*x+b*x*x+c*x+d; printf("%.5lf",s); return 0; }