#34851: esay


yp11151151@yphs.tp.edu.tw (908-37陳祈佑)

學校 : 臺北市私立延平高級中學
編號 : 197204
來源 : [203.72.178.2]
最後登入時間 :
2024-10-28 10:28:39
a006. 一元二次方程式 | From: [203.72.178.2] | 發表日期 : 2023-04-21 13:21

#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