记录编号 |
417952 |
评测结果 |
AAAAAAAAAA |
题目名称 |
一元二次方程求解 |
最终得分 |
100 |
用户昵称 |
NVIDIA |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2017-06-28 18:27:27 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<cstdio>
#include<cmath>
#include<iostream>
using namespace std;
int a,b,c;double d,x,x2;
char buf[1<<15],*fs,*ft;
inline char getc() {return (fs==ft&&(ft=(fs=buf)+fread(buf,1,1<<15,stdin),fs==ft))?0:*fs++;}
inline int read()
{
int x=0,f=1; char ch=getc();
while(!isdigit(ch)) {if(ch=='-') f=-1; ch=getc();}
while(isdigit(ch)) {x=x*10+ch-'0'; ch=getc();}
return x*f;
}
inline int miao()
{
freopen("trouble.in","r",stdin);
freopen("trouble.out","w",stdout);
a=read();b=read();c=read();d=b*b-4*a*c;
if(d<0)printf("No Answer!\n");
else{x=(-b+sqrt(d))/(2*a);x2=(-b-sqrt(d))/(2*a);printf("%.3lf %.3lf",x,x2);}
}
int aaa=miao();
int main(){;}