记录编号 |
227897 |
评测结果 |
AAAAAAAAAA |
题目名称 |
一元二次方程求解 |
最终得分 |
100 |
用户昵称 |
安呐一条小咸鱼。 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.057 s |
提交时间 |
2016-02-18 21:35:13 |
内存使用 |
0.22 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int main()
{
freopen("trouble.in","r",stdin);
freopen("trouble.out","w",stdout);
double a,b,c,d;
scanf("%lf%lf%lf",&a,&b,&c);
d=b*b-4*a*c;
if(d>0)
{
printf("%.3lf %.3lf ",(-b+sqrt(d))/(2*a),(-b-sqrt(d))/(2*a));
}
if(d==0)
{
printf("%.3lf %.3lf",-b/(2*a),-b/(2*a));
}
if(d<0)
{
printf("No Answer!");
}
return 0;
}