#29203:


80280@gsuite.essh.kl.edu.tw (p114-顏佑翰)

學校 : 基隆市私立二信高級中學
編號 : 180910
來源 : [61.220.150.251]
最後登入時間 :
2022-11-11 11:16:02
a006. 一元二次方程式 | From: [58.114.231.135] | 發表日期 : 2022-02-05 11:34

#include <iostream>

#include <cmath>

using namespace std;

 

 

 

void ans()

{

int a, b, c, x1, x2;

while (cin >> a >> b >> c) {

if (pow(2, b) - 4 * a * c >= 0)

{

x1 = (-b + sqrt(pow(b, 2) - 4 * a * c)) / 2 * a;

x2 = (-b - sqrt(pow(b, 2) - 4 * a * c)) / 2 * a;

if (x1 != x2)

{

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

}

else {

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

}

}

 

else {

cout << "No real root" << endl;

}

}

 

 

}

 

int main()

{

ans();

}

 

 
ZeroJudge Forum