提交时间:2025-12-26 14:23:30

运行 ID: 77528

#include <bits/stdc++.h>; using namespace std; int main() { double a,b,c,d,x; cin >> x >> a >> b >> c >> d ; cout<<fixed<<setprecision(7)<<a*x*x*x+b*x*x+c*x+d; return 0; }