提交时间:2023-12-04 19:49:50

运行 ID: 33013

#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; }