OpenJudge第1.3.07题:http://noi.openjudge.cn/ch0103/07/
我的代码:
#include<bits/stdc++.h> using namespace std; int main(){ double x,a,b,c,d; cin>>x>>a>>b>>c>>d; cout<<a*pow(x,3)+b*pow(x,2)+c*x+d; return 0; }
Wrong Answer了,求大佬帮助