#44175: 學長 我不想努力了~~~


jaheyhey (最喜歡Ja~~~~的那個高中生)

學校 : 臺北市立中正高級中學
編號 : 259167
來源 : [111.240.3.171]
最後登入時間 :
2024-11-11 00:04:01
a006. 一元二次方程式 | From: [111.240.3.171] | 發表日期 : 2024-11-09 21:49

#include <iostream>
#include <cmath>
using namespace std;

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