提交时间:2024-09-21 18:18:54

运行 ID: 51415

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