用c++解 输入a、b、c求一元二次方程ax^2+bx+c=0的两个实数根(不考虑无解的情况)。
展开全部
c++ 输出格式定义繁琐,我们可以用 c 的printf()方式输出。
#include<iostream>
using namespace std;
#include <cmath>
#include <stdio.h>
int main(){
double a,b,c,d,x1,x2;
cout << "input a b c" << endl;
cin >> a >> b >> c;
d = b*b - 4 * a *c;
if (d<0) {cout << "no real result" << endl; return 1;}
else {
if (a==0) { x1 = -c/b; x2 = x1;} else
{ x1 = (-b + sqrt(d)) / 2.0 / a;
x2 = (-b - sqrt(d)) / 2.0 / a;};
}
if (x1 > x2) printf("%.2lf %.2lf\n",x1,x2);
else printf("%.2lf %.2lf\n",x2,x1);
return 0;
}
#include<iostream>
using namespace std;
#include <cmath>
#include <stdio.h>
int main(){
double a,b,c,d,x1,x2;
cout << "input a b c" << endl;
cin >> a >> b >> c;
d = b*b - 4 * a *c;
if (d<0) {cout << "no real result" << endl; return 1;}
else {
if (a==0) { x1 = -c/b; x2 = x1;} else
{ x1 = (-b + sqrt(d)) / 2.0 / a;
x2 = (-b - sqrt(d)) / 2.0 / a;};
}
if (x1 > x2) printf("%.2lf %.2lf\n",x1,x2);
else printf("%.2lf %.2lf\n",x2,x1);
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询