#25429: ?????


antony9399@gmail.com (03楊騏安)

學校 : 不指定學校
編號 : 154634
來源 : [42.75.212.121]
最後登入時間 :
2021-06-04 10:34:18
a006. 一元二次方程式 | From: [42.75.177.113] | 發表日期 : 2021-05-21 08:23

#include <iostream>

#include <math.h> 

using namespace std;

 

int main()

{

int a,b,c,d;

float x1,x2;

cin>>a,b,c;

d=b*b-4*a*c;

x1=(-b+sqrt(d)/2*a)

x2=(-b-sqrt(d)/2*a)

 

if(sqrt(d)>0)

cout<<"Two different roots x1="<<x1<<" , x2="<<x2<<endl;

 

else if(sqrt(d)==0)

cout<<"Two same roots x="<<x1<<endl;

cout<<"No real root"

}

 
ZeroJudge Forum