#26521: 爲什麽錯??


10835229@mail.hpsh.tp.edu.tw (我吃不下了,好飽)

學校 : 不指定學校
編號 : 102829
來源 : [118.150.133.251]
最後登入時間 :
2021-08-11 15:43:37
a006. 一元二次方程式 | From: [118.150.133.251] | 發表日期 : 2021-08-11 16:21

#include <bits/stdc++.h>
using namespace std;

int main(){
int a,b,c;
int delta,x1,x2;
cin>>a>>b>>c;
delta=b*b-4*a*c;
x1=((0-b)+sqrt(b*b-4*a*c))/2*a;
x2=((0-b)-sqrt(b*b-4*a*c))/2*a;
if(delta>0)
cout<<"Two different roots x1="<<x1<<" , "<<"x2="<<x2<<endl;
else if(delta==0&&x1==x2)
cout<<"Two same roots x="<<x1<<endl;
else
cout<<"No real root"<<endl;
return 0;
}
 
 
 
ZeroJudge Forum