提交时间:2024-12-21 10:48:11
运行 ID: 2715
#include<bits/stdc++.h> using namespace std; int main() { double x,a,b,c,d; cin>>x>>a>>b>>c>>d; cout<<setprecision(7)<<fixed<<a*x*x*x+b*x*x+c*x+d; return 0; }