#36893:


tang912108 (黃奕棠)

學校 : 臺北市立中正高級中學
編號 : 240685
來源 : [111.248.94.89]
最後登入時間 :
2024-10-17 17:39:58
a006. 一元二次方程式 | From: [125.228.142.222] | 發表日期 : 2023-08-15 16:09

#include <iostream>
#include <math.h>
using namespace std;
int main()
{
    int x2,x1,x0;
    cin>>x2>>x1>>x0;
    int D=x1*x1-x2*x0*4;
    int Ans1=(-x1+sqrt(D))/x2/2;
    if(D>0)cout<<"Two different roots x1="<<Ans1<<" , x2="<<Ans1-sqrt(D)/x2;
    else if(D==0)cout<<"Two same roots x="<<Ans1;
    else cout<<"No real root";
    return 0;
}

 
ZeroJudge Forum