Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1410 杨洋杰 06计算f(x)的值 C++ Compile Error 0 MS 0 KB 268 2023-09-16 18:24:07

Tests(0/0):


Code:

#include<iostream> #include<cstdio> #include<cmath> using namespace std; int main(){ double x,a,b,c,d; cin>>x>>a>>b>>c>>d; double e; e=a*pow(x,3)+b*pow(x,2)+c*x+d; //pow(a,b)代表a的b次方 printf("%.5lf",e); return 0; }


Run Info:

mount: mount /usr on /home/judge/jnoj/judge/run/0/usr failed: No space left on device