记录编号 353688 评测结果 AAAAAAAAAA
题目名称 一元二次方程求解 最终得分 100
用户昵称 GravatarZwoi_John Price 是否通过 通过
代码语言 C 运行时间 0.018 s
提交时间 2016-11-18 15:12:14 内存使用 0.29 MiB
显示代码纯文本
#include<stdio.h>
#include<math.h>
int main()
{
	int a,b,c;
	double sj,x1,x2;
	freopen("trouble.in","r",stdin);
	freopen("trouble.out","w",stdout);
	
	scanf("%d %d %d",&a,&b,&c);
	if (b*b-4*a*c<0) printf("No Answer!");

	else
	{
		sj=sqrt(b*b-4*a*c);
		x1=(-b+sj)*1.00/(a+a);
		x2=(-b-sj)*1.00/(a+a);
		printf("%.3lf %.3lf",x1,x2);
	}
	
	fclose(stdin);
	fclose(stdout);
	return 0;
}