| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135341 | 万明宇 | 06计算f(x)的值 | C++ | Accepted | 1 MS | 272 KB | 261 | 2025-11-03 17:01:35 | 
#include <bits/stdc++.h> using namespace std; int main() { double x,a,b,c,d; cin>>x>>a>>b>>c>>d; double result = a * x * x * x + b * x * x + c * x + d; cout << fixed << setprecision(5) << result << endl; return 0; }