#33667:


j812018@nehs.hc.edu.tw (嗨)

學校 : 國立科學工業園區實驗高級中學
編號 : 152750
來源 : [101.10.45.143]
最後登入時間 :
2023-01-19 22:25:33
a006. 一元二次方程式 | From: [111.243.24.96] | 發表日期 : 2023-01-19 23:44


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

 

 

 


int main() {
    int a,b,c,d,big,small,z;
    cin>>a>>b>>c;
    z=b-2*b;
    big=(z+sqrt(b*b-4*a*c))/(2*a);
    small=(z-sqrt(b*b-4*a*c))/(2*a);

    d=b*b-4*a*c;
    if(d<0){
        cout <<"No real root";
    }
    else if(d>0){
        cout <<"Two different roots x1="<<big<<" , x2="<<small;

    }
    else{
            cout <<"Two same roots x="<<big;


    }

    return 0;

 

}

 
ZeroJudge Forum