提交时间:2024-12-22 17:36:54
运行 ID: 3247
#include <bits/stdc++.h> using namespace std; int main() { int x,a,b,c,d,e; cin>>x>>a>>b>>c>>d; e=a*x*a*x*a*x+b*x*b*x+c*x+d; cout<<setprecision(7)<<fixed<<e; }