/*求方程 的根,用三个函数分别求当b^2-4ac大于0、等于0、和小于0时的根,并输出结果。从主函数输入a、b、c的值。*/
#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
void getEquation(double a, double b, double c);
double delt;
int main()
{
double a, b, c;
cin >> a >> b >> c;
getEquation(a, b, c);
return 0;
}
void getEquation(double a, double b, double c)
{
double x1, x2;
delt = b * b - 4 * a * c;
if(delt<0)
{
delt=-delt;
cout<<"x1="<<setprecision(3)<<setiosflags(ios::fixed)<<-b/(2*a)<<'+'<<sqrt(delt)/(2*a)<<'i'<<' ';
cout<<"x2="<<setprecision(3)<<setiosflags(ios::fixed)<<-b/(2*a)<<'-'<<sqrt(delt)/(2*a)<<'i'<<endl;
}
else
{
cout<<"x1="<<setprecision(3)<<setiosflags(ios::fixed)<<-(b+sqrt(delt))/(2*a)<<' ';
cout<<"x2="<<setprecision(3)<<setiosflags(ios::fixed)<<-(b-sqrt(delt))/(2*a)<<endl;
}
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:1225 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:1071 |
【亲和数】 (C语言代码)浏览:892 |
输出正反三角形 (C语言代码)格式错误!!!浏览:1172 |
P1001 (C语言代码)浏览:830 |
WU-C语言程序设计教程(第三版)课后习题12.1 (C++代码)浏览:1016 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:570 |
出圈】指针malloc版浏览:373 |
杨辉三角 (C语言代码)浏览:497 |
最好的,浏览:597 |