记录编号 |
142707 |
评测结果 |
AAAAA |
题目名称 |
[NOIP 2001]一元三次方程求解 |
最终得分 |
100 |
用户昵称 |
晖灰熊 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.002 s |
提交时间 |
2014-12-10 14:53:28 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include <iostream>
#include <cstdio>
#define p 1e-6
using namespace std;
double a,b,c,d;
double calc(double x){
return a*x*x*x+b*x*x+c*x+d;
}
int main(){
freopen("3cfc.in","r",stdin);
freopen("3cfc.out","w",stdout);
double ans=-100.00;
cin>>a>>b>>c>>d;
for(;ans<=100.00;ans+=0.01){
if (calc(ans)<p && calc(ans)>-p){
printf ("%.2lf ",ans);
}
}
fclose(stdin);
fclose(stdout);
return 0;
}