记录编号 127054 评测结果 TTTTT
题目名称 [NOIP 2001]一元三次方程求解 最终得分 0
用户昵称 Gravatarunsc 是否通过 未通过
代码语言 C++ 运行时间 5.008 s
提交时间 2014-10-14 20:39:30 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<stdio.h>
using namespace std;
int main(){
	int a,b,c,d,f;
	double x,x1,x2,x3;
	f=a*x*x*x+b*x*x+c*x+d;
	cin>>a>>b>>c>>d;
	for(int i=-100;i<=100;i+=0.01){
		
			if((a*x*x*x+b*x*x+c*x+d>=0.01)&&(a*x*x*x+b*x*x+c*x+d<=0.01)){
			printf("%.2lf %.2lf %.2lf\n",x1,x2,x3);	
		}
		}
	return 0;
		}
		
		
	
	
		
	//cout<<x1<<" "<<x2<<" "<<x3<<endl;