标签:注意 比较 its highlight int 范围 number style div
https://www.luogu.com.cn/problem/P1024
方法一:暴力枚举
#include<bits/stdc++.h>
using namespace std;
double a, b, c, d, fx;
int main()
{
cin>>a>>b>>c>>d;
for(int i=-1000000; i<=1000000; i++){//根据数值范围放大,获得精度
double x=1.0*i/10000;//同比例缩小
fx=a*x*x*x+b*x*x+c*x+d;//函数值
//注意此处实数的精度比较,第一提交我写得是fx==0
结果只得了50分
if(abs(fx-0.0)<1e-6)cout<<fixed<<setprecision(2)<<x<<" ";//符合答案输出
}
return 0;
}
标签:注意 比较 its highlight int 范围 number style div
原文地址:https://www.cnblogs.com/tflsnoi/p/13198447.html