#32149: 測試通過,解答NA,求解


leo940625@gmail.com (Devil 小天o)

學校 : 不指定學校
編號 : 152588
來源 : [118.233.209.70]
最後登入時間 :
2022-09-20 21:30:52
a006. 一元二次方程式 | From: [118.233.209.70] | 發表日期 : 2022-09-16 21:40

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

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
//g++ test.cpp -o test
//.\test.exe

int main(int argc, char** argv) {
   
    int a,b,c,d;
    int a1,a2;
    cin>>a>>b>>c;
    d=b*b-4*a*c;
   
    if(d>0)    {
       
     a1=(-b+sqrt(d))/2*a;    
     a2=(-b-sqrt(d))/2*a;
     cout<<"Two different roots x1="<<a1<<" , x2="<<a2;
   
    }
    else if(d==0) {
   
     a1=(-b)/2*a;
     cout<<"Two same roots x="<<a1;
   
    }
    else{
       
     cout<<"No real root";
       
    }
   
    return 0;
   
}
 
#32150: Re: 測試通過,解答NA,求解


cges30901 (cges30901)

學校 : 不指定學校
編號 : 30877
來源 : [39.9.74.255]
最後登入時間 :
2024-10-14 22:20:08
a006. 一元二次方程式 | From: [59.115.28.249] | 發表日期 : 2022-09-16 21:52

2*a要括號

 
ZeroJudge Forum