提交时间:2024-12-21 10:58:59

运行 ID: 2727

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