求根公式 注意把大的根放在前面 小的根放在后面 很多人没注意
#include<iostream> #include<cmath> #include<iomanip> using namespace std; int main() { double a,b,c; cin>>a>>b>>c; double x1,x2; x1=(-b+sqrt(b*b-4*a*c))/(2*a); x2=(-b-sqrt(b*b-4*a*c))/(2*a); cout<<setiosflags(ios::fixed)<<setprecision(2); if(b*b-4*a*c!=0) { if(x1>x2) cout<<x1<<" "<<x2<<endl; else cout<<x2<<" "<<x1<<endl; } if(b*b-4*a*c==0) cout<<x1<<endl; return 0; }
0.0分
4 人评分
yyds 2022-03-13 21:05:44 |
。。。。 a有正负