藍橋杯 編程求一元二次方程的根

#include<iostream> #include<cmath> using namespace std; int main() {     float a,b,c,t,x1,x2;     cin>>a>>b>>c;     if(b*b-4*a*c<0)     {         cout<<"NO"<<endl;         return 0;     }     t=sqrt(b
相關文章
相關標籤/搜索